X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ftracklist.C;h=fd7c8a86bb86b3ff3d91e08e061a03c6f804fbcc;hb=4d2d052cc767103a8699b1de0e3a1f36844ac04f;hp=eb3642ce440ac6d1c7647e7ffff4bdbd79066e85;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/tracklist.C b/cinelerra-5.1/cinelerra/tracklist.C index eb3642ce..fd7c8a86 100644 --- a/cinelerra-5.1/cinelerra/tracklist.C +++ b/cinelerra-5.1/cinelerra/tracklist.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 "intauto.h" @@ -56,11 +56,11 @@ TrackList::get_playable_type(long position, int reverse, int data_type) Track *current_track; Patch *current_patch; Auto *current_auto; - - for(current_track = mwindow->tracks->first, - current_patch = mwindow->patches->first; - current_track && current_patch; - current_track = current_track->next, + + for(current_track = mwindow->tracks->first, + current_patch = mwindow->patches->first; + current_track && current_patch; + current_track = current_track->next, current_patch = current_patch->next) { if(current_patch->play && current_track->data_type == data_type) @@ -70,15 +70,15 @@ TrackList::get_playable_type(long position, int reverse, int data_type) // get auto right before position if(reverse) { - if(current_auto && current_auto->position < position) + if(current_auto && current_auto->position < position) current_auto = current_auto->next; } else { - if(current_auto && current_auto->position > position) + if(current_auto && current_auto->position > position) current_auto = current_auto->previous; } - + if(!current_auto || current_auto->value == 1) append((ATrack*)current_track); } @@ -89,12 +89,12 @@ TrackList::get_recordable_type(int data_type) { Track *current_track; Patch *current_patch; - - for(current_track = tracks->first, current_patch = patches->first; - current_track && current_patch; + + for(current_track = tracks->first, current_patch = patches->first; + current_track && current_patch; current_track = current_track->next, current_patch = current_patch->next) { - if(current_patch->record && current_track->data_type == TRACK_AUDIO) + if(current_patch->record && current_track->data_type == TRACK_AUDIO) append((ATrack*)current_track); } }