]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_playlist.c
Tractor enhancements
[mlt] / src / framework / mlt_playlist.c
index 1347a0e3dcebe6bb1fde44370cd3eae63c35e652..0e017cebdc99a2dfef17b777d629bb8657a07e2a 100644 (file)
@@ -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", "<playlist>" );
                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 * ) );