]> git.sesse.net Git - mlt/commitdiff
indicate image producers seekable
authorDan Dennedy <dan@dennedy.org>
Thu, 8 Mar 2012 07:10:11 +0000 (23:10 -0800)
committerDan Dennedy <dan@dennedy.org>
Thu, 8 Mar 2012 07:10:11 +0000 (23:10 -0800)
src/modules/gtk2/producer_pango.c
src/modules/gtk2/producer_pixbuf.c
src/modules/qimage/producer_qimage.c

index 363e53916093265560b6bcf00417721f3491bd97..483990696184b301cf21fcf2f51c9e1590a0abe2 100644 (file)
@@ -154,6 +154,7 @@ mlt_producer producer_pango_init( const char *filename )
                mlt_properties_set( properties, "style", "normal" );
                mlt_properties_set( properties, "encoding", "UTF-8" );
                mlt_properties_set_int( properties, "weight", PANGO_WEIGHT_NORMAL );
+               mlt_properties_set_int( properties, "seekable", 1 );
 
                if ( filename == NULL || ( filename && ( !strcmp( filename, "" )
                        // workaround for old kdenlive countdown generator
index c76c41f1622e777dc2943bf612149ad563355df5..f69212310998e1515626408c92d08f9bac642276 100644 (file)
@@ -90,6 +90,7 @@ mlt_producer producer_pixbuf_init( char *filename )
                mlt_properties_set_int( properties, "ttl", 25 );
                mlt_properties_set_int( properties, "aspect_ratio", 1 );
                mlt_properties_set_int( properties, "progressive", 1 );
+               mlt_properties_set_int( properties, "seekable", 1 );
 
                // Validate the resource
                if ( filename )
index 02abbed2a4a3687d7ffb742379d07c6e575a8391..93e2b5f00ee53a7a81c1c7ac88fb199558f3b110 100644 (file)
@@ -60,6 +60,7 @@ mlt_producer producer_qimage_init( mlt_profile profile, mlt_service_type type, c
                mlt_properties_set_int( properties, "ttl", 25 );
                mlt_properties_set_int( properties, "aspect_ratio", 1 );
                mlt_properties_set_int( properties, "progressive", 1 );
+               mlt_properties_set_int( properties, "seekable", 1 );
                
                // Validate the resource
                if ( filename )