remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / 1080to480 / 1080to480.C
index bb35f2612ebd91bbcdb034e135905481dd229b92..fc18c5b1f918f52114c0cc96671c45083e2fccfd 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * 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,13 +145,13 @@ int _1080to480Option::handle_event()
 _1080to480Main::_1080to480Main(PluginServer *server)
  : PluginVClient(server)
 {
-       
+
        temp = 0;
 }
 
 _1080to480Main::~_1080to480Main()
 {
-       
+
        if(temp) delete temp;
 }
 
@@ -243,7 +243,7 @@ int _1080to480Main::process_realtime(VFrame *input, VFrame *output)
 
        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;