]> git.sesse.net Git - mlt/commitdiff
Add audio_off and frequency to properties passed to sdl consumer.
authorDan Dennedy <dan@dennedy.org>
Sun, 15 May 2011 20:57:36 +0000 (13:57 -0700)
committerDan Dennedy <dan@dennedy.org>
Sun, 15 May 2011 20:57:36 +0000 (13:57 -0700)
src/modules/sdl/consumer_sdl_preview.c

index 92d6b1e460cc828a4f9f37feaf0344eb025622c1..ced12060704fc5671c631a54a3937e2c0108c0b8 100644 (file)
@@ -198,11 +198,10 @@ static int consumer_start( mlt_consumer parent )
                mlt_properties_set_int( still, "progressive", progressive );
 
                mlt_properties_pass_list( play, properties,
-                       "deinterlace_method,resize,rescale,width,height,aspect_ratio,display_ratio,volume,real_time,buffer,prefill" );
+                       "deinterlace_method,resize,rescale,width,height,aspect_ratio,display_ratio,preview_off,preview_format,window_background"
+                       ",volume,real_time,buffer,prefill,audio_off,frequency" );
                mlt_properties_pass_list( still, properties,
-                       "deinterlace_method,resize,rescale,width,height,aspect_ratio,display_ratio" );
-               mlt_properties_pass_list( play, properties, "preview_off,preview_format,window_background" );
-               mlt_properties_pass_list( still, properties, "preview_off,preview_format,window_background" );
+                       "deinterlace_method,resize,rescale,width,height,aspect_ratio,display_ratio,preview_off,preview_format,window_background" );
 
                mlt_properties_pass( play, properties, "play." );
                mlt_properties_pass( still, properties, "still." );