X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2F1080to480%2F1080to480.C;h=1f83f499be3f8fc1366df43a9ef45b40f70f5a02;hb=af9d4868955bf1c521383795e55d29a2d4d05db2;hp=bb35f2612ebd91bbcdb034e135905481dd229b92;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/1080to480/1080to480.C b/cinelerra-5.1/plugins/1080to480/1080to480.C index bb35f261..1f83f499 100644 --- a/cinelerra-5.1/plugins/1080to480/1080to480.C +++ b/cinelerra-5.1/plugins/1080to480/1080to480.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #include "1080to480.h" @@ -58,10 +58,10 @@ void _1080to480Config::copy_from(_1080to480Config &that) first_field = that.first_field; } -void _1080to480Config::interpolate(_1080to480Config &prev, - _1080to480Config &next, - long prev_frame, - long next_frame, +void _1080to480Config::interpolate(_1080to480Config &prev, + _1080to480Config &next, + long prev_frame, + long next_frame, long current_frame) { copy_from(prev); @@ -73,8 +73,8 @@ void _1080to480Config::interpolate(_1080to480Config &prev, _1080to480Window::_1080to480Window(_1080to480Main *client) : PluginClientWindow(client, 200, 100, 0, 0, 1) -{ - this->client = client; +{ + this->client = client; } @@ -111,15 +111,15 @@ int _1080to480Window::set_first_field(int first_field, int send_event) -_1080to480Option::_1080to480Option(_1080to480Main *client, - _1080to480Window *window, - int output, - int x, - int y, +_1080to480Option::_1080to480Option(_1080to480Main *client, + _1080to480Window *window, + int output, + int x, + int y, char *text) - : BC_Radial(x, - y, - client->config.first_field == output, + : BC_Radial(x, + y, + client->config.first_field == output, text) { this->client = client; @@ -145,17 +145,17 @@ int _1080to480Option::handle_event() _1080to480Main::_1080to480Main(PluginServer *server) : PluginVClient(server) { - + temp = 0; } _1080to480Main::~_1080to480Main() { - + if(temp) delete temp; } -const char* _1080to480Main::plugin_title() { return _("1080 to 480"); } +const char* _1080to480Main::plugin_title() { return N_("1080 to 480"); } int _1080to480Main::is_realtime() { return 1; } NEW_WINDOW_MACRO(_1080to480Main, _1080to480Window) @@ -237,13 +237,13 @@ int _1080to480Main::process_realtime(VFrame *input, VFrame *output) load_configuration(); if(!temp) { - temp = new VFrame(input->get_w(), input->get_h(), input->get_color_model()); + temp = new VFrame(input->get_w(), input->get_h(), input->get_color_model(), 0); temp->clear_frame(); } reduce_field(temp, input, config.first_field == 0 ? 0 : 1, 0); reduce_field(temp, input, config.first_field == 0 ? 1 : 0, 1); - + output->copy_from(temp); return 0; @@ -279,7 +279,7 @@ void _1080to480Main::read_data(KeyFrame *keyframe) void _1080to480Main::update_gui() { - if(thread) + if(thread) { load_configuration(); _1080to480Window *window = (_1080to480Window *)thread->window;