X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_playlist.c;h=7daa7c9959d4109f1851f4f8921f79868c27f378;hb=3cdcb361562ac24233535f04e88df5c99d7c24b2;hp=00c98cd98afde8a124328b3c0c6baaa07c551fcb;hpb=306a514a9739dc206a4c567dace10921934ef3ff;p=melted diff --git a/src/framework/mlt_playlist.c b/src/framework/mlt_playlist.c index 00c98cd..7daa7c9 100644 --- a/src/framework/mlt_playlist.c +++ b/src/framework/mlt_playlist.c @@ -79,6 +79,9 @@ mlt_playlist mlt_playlist_init( ) // Indicate that this producer is a playlist mlt_properties_set_data( mlt_playlist_properties( this ), "playlist", this, 0, NULL, NULL ); + + // Specify the eof condition + mlt_properties_set( mlt_playlist_properties( this ), "eof", "pause" ); } return this; @@ -194,6 +197,9 @@ static mlt_producer mlt_playlist_virtual_seek( mlt_playlist this ) int64_t position = mlt_producer_frame_position( &this->parent, pos ); int64_t total = 0; + mlt_properties properties = mlt_playlist_properties( this ); + char *eof = mlt_properties_get( properties, "eof" ); + // Loop through the virtual playlist int i = 0; @@ -222,14 +228,25 @@ static mlt_producer mlt_playlist_virtual_seek( mlt_playlist this ) position += mlt_producer_frame_position( producer, mlt_producer_get_in( producer ) ); mlt_producer_seek_frame( producer, position ); } - else if ( total > 0 ) + else if ( !strcmp( eof, "pause" ) && total > 0 ) { playlist_entry *entry = this->list[ this->count - 1 ]; mlt_producer this_producer = mlt_playlist_producer( this ); - mlt_producer_seek_frame( this_producer, total ); + mlt_producer_seek_frame( this_producer, total - 1 ); producer = entry->producer; position = mlt_producer_frame_position( producer, mlt_producer_get_in( producer ) ); mlt_producer_seek_frame( producer, position + entry->frame_out ); + mlt_producer_set_speed( producer, 0 ); + } + else if ( !strcmp( eof, "loop" ) && total > 0 ) + { + playlist_entry *entry = this->list[ 0 ]; + mlt_producer this_producer = mlt_playlist_producer( this ); + mlt_producer_seek_frame( this_producer, 0 ); + producer = entry->producer; + position = entry->frame_in; + position += mlt_producer_frame_position( producer, mlt_producer_get_in( producer ) ); + mlt_producer_seek_frame( producer, position ); } else {