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
26 #include "bistogram.inc"
27 #include "bistogramconfig.h"
28 #include "bistogramwindow.inc"
29 #include "loadbalance.h"
31 #include "pluginvclient.h"
37 HISTOGRAM_POLYNOMINAL,
42 class HistogramMain : public PluginVClient
45 HistogramMain(PluginServer *server);
49 int process_realtime(VFrame *input_ptr, VFrame *output_ptr);
51 void save_data(KeyFrame *keyframe);
52 void read_data(KeyFrame *keyframe);
54 void render_gui(void *data);
56 PLUGIN_CLASS_MEMBERS(HistogramConfig)
58 // Convert input to linear output
59 float calculate_linear(float input, int mode, int do_value);
60 float calculate_smooth(float input, int subscript);
61 // Convert input to smoothed output by looking up in smooth table.
62 float calculate_curve(float input);
63 // Calculate automatic settings
64 void calculate_automatic(VFrame *data);
65 // Calculate histogram
66 void calculate_histogram(VFrame *data);
67 // Calculate the linear, smoothed, lookup curves
68 void tabulate_curve(int subscript, int use_value);
72 VFrame *input, *output;
73 HistogramEngine *engine;
74 int *lookup[HISTOGRAM_MODES];
75 float *smoothed[HISTOGRAM_MODES];
76 float *linear[HISTOGRAM_MODES];
77 int *accum[HISTOGRAM_MODES];
78 // Input point being dragged or edited
80 // Current channel being viewed
82 // total histogram bins
89 class HistogramPackage : public LoadPackage
96 class HistogramUnit : public LoadClient
99 HistogramUnit(HistogramEngine *server, HistogramMain *plugin);
101 void process_package(LoadPackage *package);
102 HistogramEngine *server;
103 HistogramMain *plugin;
107 class HistogramEngine : public LoadServer
110 HistogramEngine(HistogramMain *plugin,
113 void process_packages(int operation, VFrame *data);
114 void init_packages();
115 LoadClient* new_client();
116 LoadPackage* new_package();
117 HistogramMain *plugin;