]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_playlist.c
Fix doc error for mlt_playlist_is_blank().
[mlt] / src / framework / mlt_playlist.c
index 04eef95a0fd20383dfc09f56d51d99d20a3e95b9..b4cc7534222654585ac763f49b0a6529141cb07d 100644 (file)
@@ -1500,7 +1500,7 @@ void mlt_playlist_consolidate_blanks( mlt_playlist self, int keep_length )
  * \public \memberof mlt_playlist_s
  * \param self a playlist
  * \param clip the index of the playlist entry
- * \return true if there was an error
+ * \return true if \p clip is a "blank" producer
  */
 
 int mlt_playlist_is_blank( mlt_playlist self, int clip )
@@ -1561,11 +1561,11 @@ mlt_producer mlt_playlist_replace_with_blank( mlt_playlist self, int clip )
 
 void mlt_playlist_insert_blank( mlt_playlist self, int clip, int out )
 {
-       if ( self != NULL && length >= 0 )
+       if ( self != NULL && out >= 0 )
        {
                mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
                mlt_events_block( properties, properties );
-               mlt_playlist_blank( self, length );
+               mlt_playlist_blank( self, out );
                mlt_playlist_move( self, self->count - 1, clip );
                mlt_events_unblock( properties, properties );
                mlt_playlist_virtual_refresh( self );