remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / guicast / test2.C
index a8d9a3d9d9964ca71ca96f60824772438f9c176e..fd22fc60d6fb68356e28ab4c0c33fb5e3fb408f2 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 "guicast.h"
 class TestWindow : public BC_Window
 {
 public:
-       TestWindow() : BC_Window("test", 
+       TestWindow() : BC_Window("test",
                                0,
                                0,
-                               640, 
+                               640,
                                480)
        {
        }
@@ -60,9 +60,9 @@ static void update_status(status_t *status)
        gettimeofday(&new_time, 0);
        if(new_time.tv_sec - status->last_time.tv_sec > 1)
        {
-               fprintf(stderr, "%lld frames.  %lld frames/sec      \r", 
+               fprintf(stderr, "%lld frames.  %lld frames/sec      \r",
                        status->frames,
-                       (int64_t)status->frames / 
+                       (int64_t)status->frames /
                        (int64_t)(new_time.tv_sec - status->start_time.tv_sec));
                fflush(stdout);
                status->last_time = new_time;
@@ -80,12 +80,12 @@ int main(int argc, char *argv[])
 {
        TestWindow window;
        status_t status;
-       
+
 //     int result = window.accel_available(BC_YUV422);
 //     printf("accel_available == %d\n", result);
        window.start_video();
        BC_Bitmap *bitmap1 = window.new_bitmap(640, 480, BC_BGR8888);
-       
+
        init_status(&status);
        while(1)
        {