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
27 #include "bcdisplayinfo.h"
30 #include "mainprogress.h"
38 REGISTER_PLUGIN(_720to480Main)
44 _720to480Config::_720to480Config()
54 _720to480Window::_720to480Window(_720to480Main *client, int x, int y)
55 : BC_Window(client->gui_string,
66 this->client = client;
70 _720to480Window::~_720to480Window()
74 void _720to480Window::create_objects()
78 add_tool(odd_first = new _720to480Order(client, this, 1, x, y, _("Odd field first")));
80 add_tool(even_first = new _720to480Order(client, this, 0, x, y, _("Even field first")));
83 // add_tool(forward = new _720to480Direction(client, this, FORWARD, x, y, _("Downsample")));
85 // add_tool(reverse = new _720to480Direction(client, this, REVERSE, x, y, _("Upsample")));
87 add_subwindow(new BC_OKButton(this));
88 add_subwindow(new BC_CancelButton(this));
94 int _720to480Window::close_event()
100 void _720to480Window::set_first_field(int first_field)
102 odd_first->update(first_field == 1);
103 even_first->update(first_field == 0);
105 client->config.first_field = first_field;
108 void _720to480Window::set_direction(int direction)
110 forward->update(direction == FORWARD);
111 reverse->update(direction == REVERSE);
114 client->config.direction = direction;
119 _720to480Order::_720to480Order(_720to480Main *client,
120 _720to480Window *window,
127 client->config.first_field == output,
130 this->client = client;
131 this->window = window;
132 this->output = output;
135 int _720to480Order::handle_event()
137 window->set_first_field(output);
145 _720to480Direction::_720to480Direction(_720to480Main *client,
146 _720to480Window *window,
153 client->config.direction == output,
156 this->client = client;
157 this->window = window;
158 this->output = output;
161 int _720to480Direction::handle_event()
163 window->set_direction(output);
180 _720to480Main::_720to480Main(PluginServer *server)
181 : PluginVClient(server)
186 _720to480Main::~_720to480Main()
189 if(temp) delete temp;
192 const char* _720to480Main::plugin_title() { return N_("720 to 480"); }
193 int _720to480Main::is_realtime() { return 0; }
195 double _720to480Main::get_framerate()
197 return project_frame_rate / 2;
204 int _720to480Main::load_defaults()
206 char directory[BCTEXTLEN];
207 sprintf(directory, "%s/720to480.rc", File::get_config_path());
209 defaults = new BC_Hash(directory);
211 config.first_field = defaults->get("FIRST_FIELD", config.first_field);
212 config.direction = defaults->get("DIRECTION", config.direction);
217 int _720to480Main::save_defaults()
219 defaults->update("FIRST_FIELD", config.first_field);
220 defaults->update("DIRECTION", config.direction);
225 int _720to480Main::get_parameters()
228 _720to480Window window(this,
229 info.get_abs_cursor_x(),
230 info.get_abs_cursor_y());
231 window.create_objects();
232 int result = window.run_window();
236 int _720to480Main::start_loop()
238 if(PluginClient::interactive)
240 char string[BCTEXTLEN];
241 sprintf(string, "%s...", plugin_title());
242 progress = start_progress(string,
243 PluginClient::end - PluginClient::start);
246 input_position = PluginClient::start;
251 int _720to480Main::stop_loop()
253 if(PluginClient::interactive)
255 progress->stop_progress();
266 void _720to480Main::reduce_field(VFrame *output, VFrame *input, int dest_row)
268 int in_w = input->get_w();
269 int in_h = input->get_h();
270 int out_w = output->get_w();
271 int out_h = output->get_h();
273 #define REDUCE_MACRO(type, temp, components) \
274 for(int i = 0; i < DST_H; i++) \
276 int output_number = dest_row + i * 2; \
277 if(output_number >= out_h) break; \
279 int in1 = i * 3 + dest_row * 2; \
280 int in2 = i * 3 + 1 + dest_row * 2; \
281 int in3 = i * 3 + 2 + dest_row * 2; \
283 if(in1 >= in_h) in1 = in_h - 1; \
284 if(in2 >= in_h) in2 = in_h - 1; \
285 if(in3 >= in_h) in3 = in_h - 1; \
287 type *out_row = (type*)output->get_rows()[output_number]; \
288 type *in_row1 = (type*)input->get_rows()[in1]; \
289 type *in_row2 = (type*)input->get_rows()[in2]; \
290 type *in_row3 = (type*)input->get_rows()[in3]; \
292 int w = MIN(out_w, in_w) * components; \
293 for(int j = 0; j < w; j++) \
295 *out_row++ = ((temp)*in_row1++ + \
297 (temp)*in_row3++) / 3; \
301 switch(input->get_color_model())
305 REDUCE_MACRO(unsigned char, int64_t, 3);
308 REDUCE_MACRO(float, float, 3);
312 REDUCE_MACRO(unsigned char, int64_t, 4);
315 REDUCE_MACRO(float, float, 4);
319 REDUCE_MACRO(uint16_t, int64_t, 3);
321 case BC_RGBA16161616:
322 case BC_YUVA16161616:
323 REDUCE_MACRO(uint16_t, int64_t, 4);
328 int _720to480Main::process_loop(VFrame *output)
333 temp = new VFrame(output->get_w(), output->get_h(),
334 output->get_color_model(), 0);
336 if(config.direction == FORWARD)
338 // Step 1: Reduce vertically and put in desired fields of output
339 read_frame(temp, input_position);
340 reduce_field(output, temp, config.first_field == 0 ? 0 : 1);
343 read_frame(temp, input_position);
344 reduce_field(output, temp, config.first_field == 0 ? 1 : 0);
348 if(PluginClient::interactive)
349 result = progress->update(input_position - PluginClient::start);
351 if(input_position >= PluginClient::end) result = 1;
361 void _720to480Main::save_data(KeyFrame *keyframe)
364 output.set_shared_output(keyframe->get_data(), MESSAGESIZE);
365 output.tag.set_title("720TO480");
366 output.tag.set_property("FIRST_FIELD", config.first_field);
367 output.tag.set_property("DIRECTION", config.direction);
369 output.tag.set_title("/720TO480");
371 output.append_newline();
372 output.terminate_string();
375 void _720to480Main::read_data(KeyFrame *keyframe)
378 input.set_shared_input(keyframe->get_data(), strlen(keyframe->get_data()));
380 while(!input.read_tag())
382 if(input.tag.title_is("720TO480"))
384 config.first_field = input.tag.get_property("FIRST_FIELD", config.first_field);
385 config.direction = input.tag.get_property("DIRECTION", config.direction);