X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_playlist.c;h=0e017cebdc99a2dfef17b777d629bb8657a07e2a;hb=5f8f3adaf7cc01a161092ea272f50279a7ad971a;hp=1347a0e3dcebe6bb1fde44370cd3eae63c35e652;hpb=870a1069dd7a1b33623f3284c089b9be2dfb4491;p=melted diff --git a/src/framework/mlt_playlist.c b/src/framework/mlt_playlist.c index 1347a0e..0e017ce 100644 --- a/src/framework/mlt_playlist.c +++ b/src/framework/mlt_playlist.c @@ -89,6 +89,9 @@ mlt_playlist mlt_playlist_init( ) mlt_properties_set( mlt_playlist_properties( this ), "eof", "pause" ); mlt_properties_set( mlt_playlist_properties( this ), "resource", "" ); mlt_properties_set( mlt_playlist_properties( this ), "mlt_type", "mlt_producer" ); + mlt_properties_set_position( mlt_playlist_properties( this ), "in", 0 ); + mlt_properties_set_position( mlt_playlist_properties( this ), "out", 0 ); + mlt_properties_set_position( mlt_playlist_properties( this ), "length", 0 ); this->size = 10; this->list = malloc( this->size * sizeof( playlist_entry * ) );