Minor coding style fix and comment addition.
authorCarl Hetherington <carl@carlh.net>
Mon, 16 May 2011 20:12:45 +0000 (20:12 +0000)
committerCarl Hetherington <carl@carlh.net>
Mon, 16 May 2011 20:12:45 +0000 (20:12 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@9526 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/editor_timefx.cc

index d40299a0a30579ce90a214e5931a903dbca84689..0a1d3cb49565ad4c88aaed6b195144a224c3987d 100644 (file)
@@ -74,10 +74,9 @@ Editor::time_stretch (RegionSelection& regions, float fraction)
                if (!rtv)
                        return -1;
 
-               boost::shared_ptr<Playlist> playlist
-                       = rtv->track()->playlist();
-
-           ARDOUR::TimeFXRequest request;
+               boost::shared_ptr<Playlist> playlist = rtv->track()->playlist();
+               
+               ARDOUR::TimeFXRequest request;
                request.time_fraction = fraction;
                MidiStretch stretch(*_session, request);
                begin_reversible_command ("midi stretch");
@@ -98,7 +97,9 @@ Editor::pitch_shift (RegionSelection& regions, float fraction)
        return time_fx (regions, fraction, true);
 }
 
-/** @return -1 in case of error, 1 if operation was cancelled by the user, 0 if everything went ok */
+/** @param val Percentage to time stretch by; ignored if pitch-shifting.
+ *  @param pitching true to pitch shift, false to time stretch.
+ *  @return -1 in case of error, 1 if operation was cancelled by the user, 0 if everything went ok */
 int
 Editor::time_fx (RegionSelection& regions, float val, bool pitching)
 {