mask xy scale, mask boundary only overlay, fix 8 char mask nm bug, rework maskgui...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / blurzoom / blurzoom.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 BLURZOOM_H
23 #define BLURZOOM_H
24
25 class BlurZoomMain;
26 class BlurZoomEngine;
27
28 #include "bchash.h"
29 #include "loadbalance.h"
30 #include "mutex.h"
31 #include "pluginvclient.h"
32 #include "blurzoomwindow.h"
33 #include <sys/types.h>
34
35 #define SCRATCH_MAX 20
36
37
38 typedef struct _scratch
39 {
40         int life;
41         int x;
42         int dx;
43         int init;
44 } scratch_t;
45
46 class BlurZoomConfig
47 {
48 public:
49         BlurZoomConfig();
50
51 };
52
53 class BlurZoomPackage : public LoadPackage
54 {
55 public:
56         BlurZoomPackage();
57
58         int row1, row2;
59 };
60
61 class BlurZoomServer : public LoadServer
62 {
63 public:
64         BlurZoomServer(BlurZoomMain *plugin, int total_clients, int total_packages);
65
66         LoadClient* new_client();
67         LoadPackage* new_package();
68         void init_packages();
69         BlurZoomMain *plugin;
70 };
71
72 class BlurZoomClient : public LoadClient
73 {
74 public:
75         BlurZoomClient(BlurZoomServer *server);
76
77         void process_package(LoadPackage *package);
78
79         BlurZoomMain *plugin;
80 };
81
82
83 class BlurZoomMain : public PluginVClient
84 {
85 public:
86         BlurZoomMain(PluginServer *server);
87         ~BlurZoomMain();
88
89 // required for all realtime plugins
90         PLUGIN_CLASS_MEMBERS(BlurZoomConfig)
91         int process_realtime(VFrame *input_ptr, VFrame *output_ptr);
92         int is_realtime();
93         int start_realtime();
94         int stop_realtime();
95         void save_data(KeyFrame *keyframe);
96         void read_data(KeyFrame *keyframe);
97
98
99         BlurZoomServer *blurzoom_server;
100         BlurZoomClient *blurzoom_client;
101
102         unsigned char *blurzoombuf;
103         int *blurzoomx;
104         int *blurzoomy;
105         int buf_width_blocks;
106         int buf_width;
107         int buf_height;
108         int buf_area;
109         int buf_margin_right;
110         int buf_margin_left;
111
112 #define COLORS 32
113         int palette_r[COLORS];
114         int palette_g[COLORS];
115         int palette_b[COLORS];
116
117         int y_threshold;
118
119         BlurZoomEngine **engine;
120         VFrame *input_ptr, *output_ptr;
121 };
122
123
124
125
126
127
128
129
130
131
132 #endif