]> git.sesse.net Git - mlt/commitdiff
Merge commit 'jbm/kdenlivetitle' into kdenlivetitle
authorMarco Gittler <g.marco@freenet.de>
Sun, 2 Aug 2009 21:03:59 +0000 (23:03 +0200)
committerMarco Gittler <g.marco@freenet.de>
Sun, 2 Aug 2009 21:03:59 +0000 (23:03 +0200)
src/framework/mlt_playlist.c

index 8339169bfc5a41193cf02e9d71b3c1faf8afdc37..3a03b1bd938b368b068e085911dd8f9ccf74c407 100644 (file)
@@ -1680,7 +1680,6 @@ int mlt_playlist_remove_region( mlt_playlist this, mlt_position position, int le
        {
                mlt_properties properties = MLT_PLAYLIST_PROPERTIES( this );
                int clip_start = mlt_playlist_clip_start( this, index );
-               int clip_length = mlt_playlist_clip_length( this, index );
                int list_length = mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( this ) );
                mlt_events_block( properties, this );
 
@@ -1689,14 +1688,13 @@ int mlt_playlist_remove_region( mlt_playlist this, mlt_position position, int le
 
                if ( clip_start < position )
                {
-                       mlt_playlist_split( this, index ++, position - clip_start );
-                       clip_length -= position - clip_start;
+                       mlt_playlist_split( this, index ++, position - clip_start - 1 );
                }
 
-               while( length >= 0 )
+               while( length > 0 )
                {
                        if ( mlt_playlist_clip_length( this, index ) > length )
-                               mlt_playlist_split( this, index, length );
+                               mlt_playlist_split( this, index, length - 1 );
                        length -= mlt_playlist_clip_length( this, index );
                        mlt_playlist_remove( this, index );
                }