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
25 #include "bcdisplayinfo.h"
32 #include "pluginvclient.h"
50 class YUVShiftSliderClr;
58 void reset(int clear);
59 void copy_from(YUVShiftConfig &src);
60 int equivalent(YUVShiftConfig &src);
61 void interpolate(YUVShiftConfig &prev,
67 int y_dx, y_dy, u_dx, u_dy, v_dx, v_dy;
70 class YUVShiftLevel : public BC_ISlider
73 YUVShiftLevel(YUVShiftEffect *plugin, int *output, int x, int y);
75 YUVShiftEffect *plugin;
79 class YUVShiftReset : public BC_GenericButton
82 YUVShiftReset(YUVShiftEffect *plugin, YUVShiftWindow *window, int x, int y);
85 YUVShiftEffect *plugin;
86 YUVShiftWindow *window;
89 class YUVShiftSliderClr : public BC_Button
92 YUVShiftSliderClr(YUVShiftEffect *plugin, YUVShiftWindow *window, int x, int y, int w, int clear);
95 YUVShiftEffect *plugin;
96 YUVShiftWindow *window;
100 class YUVShiftWindow : public PluginClientWindow
103 YUVShiftWindow(YUVShiftEffect *plugin);
104 void create_objects();
105 void update_gui(int clear);
106 YUVShiftLevel *y_dx, *y_dy, *u_dx, *u_dy, *v_dx, *v_dy;
107 YUVShiftEffect *plugin;
108 YUVShiftReset *reset;
109 YUVShiftSliderClr *y_dxClr, *y_dyClr;
110 YUVShiftSliderClr *u_dxClr, *u_dyClr;
111 YUVShiftSliderClr *v_dxClr, *v_dyClr;
116 class YUVShiftEffect : public PluginVClient
120 YUVShiftEffect(PluginServer *server);
124 PLUGIN_CLASS_MEMBERS(YUVShiftConfig)
125 int process_realtime(VFrame *input, VFrame *output);
127 void save_data(KeyFrame *keyframe);
128 void read_data(KeyFrame *keyframe);