]> git.sesse.net Git - mlt/commitdiff
Change param name "length" to "out" in mlt_playlist_insert_blank.
authorDan Dennedy <dan@dennedy.org>
Sat, 4 Jan 2014 22:34:10 +0000 (14:34 -0800)
committerDan Dennedy <dan@dennedy.org>
Sat, 4 Jan 2014 22:34:10 +0000 (14:34 -0800)
src/framework/mlt_playlist.c
src/framework/mlt_playlist.h
src/mlt++/MltPlaylist.cpp
src/mlt++/MltPlaylist.h

index f3dd72ceaf21652a50b0f8592504398585cb6b37..04eef95a0fd20383dfc09f56d51d99d20a3e95b9 100644 (file)
@@ -1556,10 +1556,10 @@ mlt_producer mlt_playlist_replace_with_blank( mlt_playlist self, int clip )
  * \public \memberof mlt_playlist_s
  * \param self a playlist
  * \param clip the index of the new blank section
- * \param length the ending time of the new blank section (duration - 1)
+ * \param out the ending time of the new blank section (duration - 1)
  */
 
-void mlt_playlist_insert_blank( mlt_playlist self, int clip, int length )
+void mlt_playlist_insert_blank( mlt_playlist self, int clip, int out )
 {
        if ( self != NULL && length >= 0 )
        {
index 20f9cfa41ea54157ae41a171a8c544ccb24c871b..cc5912940dd27c580b39552ba96c93386d515c8f 100644 (file)
@@ -116,7 +116,7 @@ extern int mlt_playlist_clip_is_mix( mlt_playlist self, int clip );
 extern void mlt_playlist_consolidate_blanks( mlt_playlist self, int keep_length );
 extern int mlt_playlist_is_blank( mlt_playlist self, int clip );
 extern int mlt_playlist_is_blank_at( mlt_playlist self, mlt_position position );
-extern void mlt_playlist_insert_blank( mlt_playlist self, int clip, int length );
+extern void mlt_playlist_insert_blank( mlt_playlist self, int clip, int out );
 extern void mlt_playlist_pad_blanks( mlt_playlist self, mlt_position position, int length, int find );
 extern mlt_producer mlt_playlist_replace_with_blank( mlt_playlist self, int clip );
 extern int mlt_playlist_insert_at( mlt_playlist self, mlt_position position, mlt_producer producer, int mode );
index 557cd7d65d4bef6afe6b35b292e687fe71195f6f..57c2c6acb54939fde219758d9364733c31f6e730 100644 (file)
@@ -281,9 +281,9 @@ void Playlist::consolidate_blanks( int keep_length )
        return mlt_playlist_consolidate_blanks( get_playlist( ), keep_length );
 }
 
-void Playlist::insert_blank( int clip, int length )
+void Playlist::insert_blank(int clip, int out )
 {
-       mlt_playlist_insert_blank( get_playlist( ), clip, length );
+       mlt_playlist_insert_blank( get_playlist( ), clip, out );
 }
 
 void Playlist::pad_blanks( int position, int length, int find )
index 7d0325562e7b48da1957ab4da9a587c13b98528c..924dc94cef21d0e958bbe4ecb38e16154841e7a1 100644 (file)
@@ -96,7 +96,7 @@ namespace Mlt
                        bool is_blank_at( int position );
                        void consolidate_blanks( int keep_length = 0 );
                        Producer *replace_with_blank( int clip );
-                       void insert_blank( int clip, int length );
+                       void insert_blank( int clip, int out );
                        void pad_blanks( int position, int length, int find = 0 );
                        int insert_at( int position, Producer *producer, int mode = 0 );
                        int insert_at( int position, Producer &producer, int mode = 0 );