remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / gamma / gamma.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 LINEARIZE_H
23 #define LINEARIZE_H
24
25 class GammaEngine;
26 class GammaMain;
27
28 #include "gammawindow.h"
29 #include "loadbalance.h"
30 #include "cicolors.h"
31 #include "guicast.h"
32 #include "pluginvclient.h"
33 #include "thread.h"
34
35 #define HISTOGRAM_SIZE 256
36
37 class GammaConfig
38 {
39 public:
40         GammaConfig();
41
42         int equivalent(GammaConfig &that);
43         void copy_from(GammaConfig &that);
44         void interpolate(GammaConfig &prev,
45                 GammaConfig &next,
46                 int64_t prev_frame,
47                 int64_t next_frame,
48                 int64_t current_frame);
49
50         float max;
51         float gamma;
52         int automatic;
53 // Plot histogram
54         int plot;
55 };
56
57 class GammaPackage : public LoadPackage
58 {
59 public:
60         GammaPackage();
61         int start, end;
62 };
63
64 class GammaUnit : public LoadClient
65 {
66 public:
67         GammaUnit(GammaMain *plugin);
68         void process_package(LoadPackage *package);
69         GammaMain *plugin;
70         int accum[HISTOGRAM_SIZE];
71 };
72
73 class GammaEngine : public LoadServer
74 {
75 public:
76         GammaEngine(GammaMain *plugin);
77
78         void process_packages(int operation, VFrame *data);
79         void init_packages();
80         LoadClient* new_client();
81         LoadPackage* new_package();
82         VFrame *data;
83         int operation;
84         enum
85         {
86                 HISTOGRAM,
87                 APPLY
88         };
89         GammaMain *plugin;
90         int accum[HISTOGRAM_SIZE];
91 };
92
93 class GammaMain : public PluginVClient
94 {
95 public:
96         GammaMain(PluginServer *server);
97         ~GammaMain();
98
99 // required for all realtime plugins
100         int process_buffer(VFrame *frame,
101                 int64_t start_position,
102                 double frame_rate);
103         void calculate_max(VFrame *frame);
104         int is_realtime();
105         void update_gui();
106         void save_data(KeyFrame *keyframe);
107         void read_data(KeyFrame *keyframe);
108         void render_gui(void *data);
109         int handle_opengl();
110
111         GammaEngine *engine;
112         VFrame *frame;
113
114         PLUGIN_CLASS_MEMBERS(GammaConfig)
115 };
116
117
118
119 #endif