modify clr btn 16 plugins, add regdmp for sigtraps, rework mask_engine, mask rotate...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / yuvshift / yuvshift.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifndef YUVSHIFT_H
23 #define YUVSHIFT_H
24
25 #include "bcdisplayinfo.h"
26 #include "clip.h"
27 #include "bchash.h"
28 #include "filexml.h"
29 #include "guicast.h"
30 #include "language.h"
31 #include "bccolors.h"
32 #include "pluginvclient.h"
33 #include "theme.h"
34 #include "vframe.h"
35
36 #include <stdint.h>
37 #include <string.h>
38
39 #define RESET_ALL  0
40 #define RESET_Y_DX 1
41 #define RESET_Y_DY 2
42 #define RESET_U_DX 3
43 #define RESET_U_DY 4
44 #define RESET_V_DX 5
45 #define RESET_V_DY 6
46
47 class YUVShiftEffect;
48 class YUVShiftWindow;
49 class YUVShiftReset;
50 class YUVShiftSliderClr;
51
52
53 class YUVShiftConfig
54 {
55 public:
56         YUVShiftConfig();
57
58         void reset(int clear);
59         void copy_from(YUVShiftConfig &src);
60         int equivalent(YUVShiftConfig &src);
61         void interpolate(YUVShiftConfig &prev,
62                 YUVShiftConfig &next,
63                 long prev_frame,
64                 long next_frame,
65                 long current_frame);
66
67         int y_dx, y_dy, u_dx, u_dy, v_dx, v_dy;
68 };
69
70 class YUVShiftLevel : public BC_ISlider
71 {
72 public:
73         YUVShiftLevel(YUVShiftEffect *plugin, int *output, int x, int y);
74         int handle_event();
75         YUVShiftEffect *plugin;
76         int *output;
77 };
78
79 class YUVShiftReset : public BC_GenericButton
80 {
81 public:
82         YUVShiftReset(YUVShiftEffect *plugin, YUVShiftWindow *window, int x, int y);
83         ~YUVShiftReset();
84         int handle_event();
85         YUVShiftEffect *plugin;
86         YUVShiftWindow *window;
87 };
88
89 class YUVShiftSliderClr : public BC_Button
90 {
91 public:
92         YUVShiftSliderClr(YUVShiftEffect *plugin, YUVShiftWindow *window, int x, int y, int w, int clear);
93         ~YUVShiftSliderClr();
94         int handle_event();
95         YUVShiftEffect *plugin;
96         YUVShiftWindow *window;
97         int clear;
98 };
99
100 class YUVShiftWindow : public PluginClientWindow
101 {
102 public:
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;
112 };
113
114
115
116 class YUVShiftEffect : public PluginVClient
117 {
118         VFrame *temp_frame;
119 public:
120         YUVShiftEffect(PluginServer *server);
121         ~YUVShiftEffect();
122
123
124         PLUGIN_CLASS_MEMBERS(YUVShiftConfig)
125         int process_realtime(VFrame *input, VFrame *output);
126         int is_realtime();
127         void save_data(KeyFrame *keyframe);
128         void read_data(KeyFrame *keyframe);
129         void update_gui();
130 };
131
132 #endif