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 "agingwindow.h"
33 #include <sys/types.h>
35 #define SCRATCH_MAX 20
44 int equivalent(AgingConfig &that);
45 void copy_from(AgingConfig &that);
46 void interpolate(AgingConfig &prev, AgingConfig &next,
47 int64_t prev_frame, int64_t next_frame, int64_t current_frame);
60 class AgingPackage : public LoadPackage
68 class AgingServer : public LoadServer
71 AgingServer(AgingMain *plugin, int total_clients, int total_packages);
73 LoadClient* new_client();
74 LoadPackage* new_package();
79 class AgingClient : public LoadClient
82 AgingClient(AgingServer *server);
84 void coloraging(unsigned char **output_ptr, unsigned char **input_ptr,
85 int color_model, int w, int h);
86 void scratching(unsigned char **output_ptr,
87 int color_model, int w, int h);
88 void pits(unsigned char **output_ptr,
89 int color_model, int w, int h);
90 void dusts(unsigned char **output_ptr,
91 int color_model, int w, int h);
92 void process_package(LoadPackage *package);
97 typedef struct _scratch {
105 class AgingMain : public PluginVClient
108 AgingMain(PluginServer *server);
111 // required for all realtime plugins
112 PLUGIN_CLASS_MEMBERS(AgingConfig);
113 int process_realtime(VFrame *input_ptr, VFrame *output_ptr);
115 void save_data(KeyFrame *keyframe);
116 void read_data(KeyFrame *keyframe);
118 AgingServer *aging_server;
119 AgingClient *aging_client;
121 AgingEngine **engine;
122 VFrame *input_ptr, *output_ptr;
124 int pits_count, dust_count;
125 scratch_t scratches[SCRATCH_MAX];
126 static int dx[8], dy[8];