]> git.sesse.net Git - mlt/blobdiff - src/modules/sdl/consumer_sdl.c
consumer avformat added, various cleanups and consumer realtime switching
[mlt] / src / modules / sdl / consumer_sdl.c
index 1d1e95965b5631ade68f2661486ea40ab8264ffb..238bf2a7fa1cd38e853fd4e74bd6194a9e481e0c 100644 (file)
@@ -103,7 +103,7 @@ mlt_consumer consumer_sdl_init( char *arg )
                mlt_properties_set( this->properties, "rescale", "nearest" );
 
                // Default buffer for low latency
-               mlt_properties_set_int( this->properties, "buffer", 2 );
+               mlt_properties_set_int( this->properties, "buffer", 1 );
 
                // Default progressive true
                mlt_properties_set_int( this->properties, "progressive", 0 );
@@ -246,11 +246,9 @@ static int consumer_play_audio( consumer_sdl this, mlt_frame frame, int init_aud
        mlt_audio_format afmt = mlt_audio_pcm;
 
        // Set the preferred params of the test card signal
-       int channels = 2;
-       int frequency = 48000;
+       int channels = mlt_properties_get_int( properties, "channels" );
+       int frequency = mlt_properties_get_int( properties, "frequency" );
        static int counter = 0;
-       if ( mlt_properties_get_int( properties, "frequency" ) != 0 )
-               frequency =  mlt_properties_get_int( properties, "frequency" );
 
        int samples = mlt_sample_calculator( mlt_properties_get_double( this->properties, "fps" ), frequency, counter++ );