anonymous contribution for much improved ChromakeyHSV plugin menu with boxes to set...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / yuv411 / yuv411.h
1 /*
2  * CINELERRA
3  * Copyright (C) 2016 Eric Olson
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published
7  * by the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #ifndef YUV411_H
22 #define YUV411_H
23
24
25 class yuv411Main;
26 class yuv411Window;
27
28 #include "filexml.h"
29 #include "yuv411win.h"
30 #include "guicast.h"
31 #include "pluginvclient.h"
32
33 class yuv411Config
34 {
35 public:
36         yuv411Config();
37         void reset();
38
39         void copy_from(yuv411Config &that);
40         int equivalent(yuv411Config &that);
41         void interpolate(yuv411Config &prev, yuv411Config &next,
42                 long prev_frame, long next_frame, long current_frame);
43         int int_horizontal;
44         int avg_vertical;
45         int inpainting;
46         int offset;
47         int thresh;
48         int bias;
49 };
50
51 class yuv411Main : public PluginVClient
52 {
53         VFrame *temp_frame;
54         int colormodel;
55         friend class yuv411Window;
56 public:
57         yuv411Main(PluginServer *server);
58         ~yuv411Main();
59
60 // required for all realtime plugins
61         PLUGIN_CLASS_MEMBERS(yuv411Config)
62
63         int process_realtime(VFrame *input_ptr, VFrame *output_ptr);
64         int is_realtime();
65         void update_gui();
66         void render_gui(void *data);
67         void save_data(KeyFrame *keyframe);
68         void read_data(KeyFrame *keyframe);
69 };
70
71
72 #endif