remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / cinelerra / playabletracks.C
index 9acfe7453b342000fcec98b712dcb14185c8b7fe..80e655248476ec2b320e1935005ef17959884c8a 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 "automation.h"
@@ -33,8 +33,8 @@
 #include "transportque.h"
 
 
-PlayableTracks::PlayableTracks(EDL *edl, 
-       int64_t current_position, 
+PlayableTracks::PlayableTracks(EDL *edl,
+       int64_t current_position,
        int direction,
        int data_type,
        int use_nudge)
@@ -42,25 +42,25 @@ PlayableTracks::PlayableTracks(EDL *edl,
 {
        this->data_type = data_type;
 
-       for(Track *current_track = edl->tracks->first; 
-               current_track; 
+       for(Track *current_track = edl->tracks->first;
+               current_track;
                current_track = current_track->next)
        {
                if(is_playable(current_track, current_position, direction, use_nudge))
                {
-// printf("PlayableTracks::PlayableTracks %d this=%p current_track=%p total=%d current_position=%jd\n", 
+// printf("PlayableTracks::PlayableTracks %d this=%p current_track=%p total=%d current_position=%jd\n",
 // __LINE__,
-// this, 
+// this,
 // current_track,
-// total, 
+// total,
 // current_position);
                        append(current_track);
                }
        }
-// printf("PlayableTracks::PlayableTracks %d data_type=%d total=%d current_position=%jd\n", 
+// printf("PlayableTracks::PlayableTracks %d data_type=%d total=%d current_position=%jd\n",
 // __LINE__,
-// data_type, 
-// total, 
+// data_type,
+// total,
 // current_position);
 }
 
@@ -69,7 +69,7 @@ PlayableTracks::~PlayableTracks()
 }
 
 
-int PlayableTracks::is_playable(Track *current_track, 
+int PlayableTracks::is_playable(Track *current_track,
        int64_t position,
        int direction,
        int use_nudge)