4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include "loadbalance.h"
31 #include "pluginvclient.h"
32 #include "blurzoomwindow.h"
33 #include <sys/types.h>
35 #define SCRATCH_MAX 20
38 typedef struct _scratch
53 class BlurZoomPackage : public LoadPackage
61 class BlurZoomServer : public LoadServer
64 BlurZoomServer(BlurZoomMain *plugin, int total_clients, int total_packages);
66 LoadClient* new_client();
67 LoadPackage* new_package();
72 class BlurZoomClient : public LoadClient
75 BlurZoomClient(BlurZoomServer *server);
77 void process_package(LoadPackage *package);
83 class BlurZoomMain : public PluginVClient
86 BlurZoomMain(PluginServer *server);
89 // required for all realtime plugins
90 PLUGIN_CLASS_MEMBERS(BlurZoomConfig)
91 int process_realtime(VFrame *input_ptr, VFrame *output_ptr);
95 void save_data(KeyFrame *keyframe);
96 void read_data(KeyFrame *keyframe);
99 BlurZoomServer *blurzoom_server;
100 BlurZoomClient *blurzoom_client;
102 unsigned char *blurzoombuf;
105 int buf_width_blocks;
109 int buf_margin_right;
113 int palette_r[COLORS];
114 int palette_g[COLORS];
115 int palette_b[COLORS];
119 BlurZoomEngine **engine;
120 VFrame *input_ptr, *output_ptr;