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, x, y, xS(230), yS(150), xS(230), yS(150), 0, 0, 1)
57 this->client = client;
61 _720to480Window::~_720to480Window()
65 void _720to480Window::create_objects()
67 lock_window("720to480Window::create_objects");
68 int x = xS(10), y = yS(10);
70 add_tool(odd_first = new _720to480Order(client, this, 1, x, y, _("Odd field first")));
72 add_tool(even_first = new _720to480Order(client, this, 0, x, y, _("Even field first")));
75 // add_tool(forward = new _720to480Direction(client, this, FORWARD, x, y, _("Downsample")));
77 // add_tool(reverse = new _720to480Direction(client, this, REVERSE, x, y, _("Upsample")));
79 add_subwindow(new BC_OKButton(this));
80 add_subwindow(new BC_CancelButton(this));
87 int _720to480Window::close_event()
93 void _720to480Window::set_first_field(int first_field)
95 odd_first->update(first_field == 1);
96 even_first->update(first_field == 0);
98 client->config.first_field = first_field;
101 void _720to480Window::set_direction(int direction)
103 forward->update(direction == FORWARD);
104 reverse->update(direction == REVERSE);
107 client->config.direction = direction;
112 _720to480Order::_720to480Order(_720to480Main *client,
113 _720to480Window *window,
120 client->config.first_field == output,
123 this->client = client;
124 this->window = window;
125 this->output = output;
128 int _720to480Order::handle_event()
130 window->set_first_field(output);
138 _720to480Direction::_720to480Direction(_720to480Main *client,
139 _720to480Window *window,
146 client->config.direction == output,
149 this->client = client;
150 this->window = window;
151 this->output = output;
154 int _720to480Direction::handle_event()
156 window->set_direction(output);
173 _720to480Main::_720to480Main(PluginServer *server)
174 : PluginVClient(server)
179 _720to480Main::~_720to480Main()
182 if(temp) delete temp;
185 const char* _720to480Main::plugin_title() { return N_("720 to 480"); }
186 int _720to480Main::is_realtime() { return 0; }
188 double _720to480Main::get_framerate()
190 return project_frame_rate / 2;
197 int _720to480Main::load_defaults()
199 char directory[BCTEXTLEN];
200 sprintf(directory, "%s/720to480.rc", File::get_config_path());
202 defaults = new BC_Hash(directory);
204 config.first_field = defaults->get("FIRST_FIELD", config.first_field);
205 config.direction = defaults->get("DIRECTION", config.direction);
210 int _720to480Main::save_defaults()
212 defaults->update("FIRST_FIELD", config.first_field);
213 defaults->update("DIRECTION", config.direction);
218 int _720to480Main::get_parameters()
221 _720to480Window window(this,
222 info.get_abs_cursor_x(),
223 info.get_abs_cursor_y());
224 window.create_objects();
225 int result = window.run_window();
229 int _720to480Main::start_loop()
231 if(PluginClient::interactive)
233 char string[BCTEXTLEN];
234 sprintf(string, "%s...", plugin_title());
235 progress = start_progress(string,
236 PluginClient::end - PluginClient::start);
239 input_position = PluginClient::start;
244 int _720to480Main::stop_loop()
246 if(PluginClient::interactive)
248 progress->stop_progress();
259 void _720to480Main::reduce_field(VFrame *output, VFrame *input, int dest_row)
261 int in_w = input->get_w();
262 int in_h = input->get_h();
263 int out_w = output->get_w();
264 int out_h = output->get_h();
266 #define REDUCE_MACRO(type, temp, components) \
267 for(int i = 0; i < DST_H; i++) \
269 int output_number = dest_row + i * 2; \
270 if(output_number >= out_h) break; \
272 int in1 = i * 3 + dest_row * 2; \
273 int in2 = i * 3 + 1 + dest_row * 2; \
274 int in3 = i * 3 + 2 + dest_row * 2; \
276 if(in1 >= in_h) in1 = in_h - 1; \
277 if(in2 >= in_h) in2 = in_h - 1; \
278 if(in3 >= in_h) in3 = in_h - 1; \
280 type *out_row = (type*)output->get_rows()[output_number]; \
281 type *in_row1 = (type*)input->get_rows()[in1]; \
282 type *in_row2 = (type*)input->get_rows()[in2]; \
283 type *in_row3 = (type*)input->get_rows()[in3]; \
285 int w = MIN(out_w, in_w) * components; \
286 for(int j = 0; j < w; j++) \
288 *out_row++ = ((temp)*in_row1++ + \
290 (temp)*in_row3++) / 3; \
294 switch(input->get_color_model())
298 REDUCE_MACRO(unsigned char, int64_t, 3);
301 REDUCE_MACRO(float, float, 3);
305 REDUCE_MACRO(unsigned char, int64_t, 4);
308 REDUCE_MACRO(float, float, 4);
312 REDUCE_MACRO(uint16_t, int64_t, 3);
314 case BC_RGBA16161616:
315 case BC_YUVA16161616:
316 REDUCE_MACRO(uint16_t, int64_t, 4);
321 int _720to480Main::process_loop(VFrame *output)
326 temp = new VFrame(output->get_w(), output->get_h(),
327 output->get_color_model(), 0);
329 if(config.direction == FORWARD)
331 // Step 1: Reduce vertically and put in desired fields of output
332 read_frame(temp, input_position);
333 reduce_field(output, temp, config.first_field == 0 ? 0 : 1);
336 read_frame(temp, input_position);
337 reduce_field(output, temp, config.first_field == 0 ? 1 : 0);
341 if(PluginClient::interactive)
342 result = progress->update(input_position - PluginClient::start);
344 if(input_position >= PluginClient::end) result = 1;
354 void _720to480Main::save_data(KeyFrame *keyframe)
357 output.set_shared_output(keyframe->xbuf);
358 output.tag.set_title("720TO480");
359 output.tag.set_property("FIRST_FIELD", config.first_field);
360 output.tag.set_property("DIRECTION", config.direction);
362 output.tag.set_title("/720TO480");
364 output.append_newline();
365 output.terminate_string();
368 void _720to480Main::read_data(KeyFrame *keyframe)
371 input.set_shared_input(keyframe->xbuf);
373 while(!input.read_tag())
375 if(input.tag.title_is("720TO480"))
377 config.first_field = input.tag.get_property("FIRST_FIELD", config.first_field);
378 config.direction = input.tag.get_property("DIRECTION", config.direction);