From 72b3bc4629d011be72a82a7c5351d49271af200b Mon Sep 17 00:00:00 2001 From: ddennedy Date: Fri, 12 Mar 2004 20:54:25 +0000 Subject: [PATCH] default progressive off git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@211 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/sdl/consumer_sdl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/modules/sdl/consumer_sdl.c b/src/modules/sdl/consumer_sdl.c index aa88dec..d3d0b7a 100644 --- a/src/modules/sdl/consumer_sdl.c +++ b/src/modules/sdl/consumer_sdl.c @@ -106,7 +106,7 @@ mlt_consumer consumer_sdl_init( char *arg ) mlt_properties_set_int( this->properties, "buffer", 8 ); // Default progressive true - mlt_properties_set_int( this->properties, "progressive", 1 ); + mlt_properties_set_int( this->properties, "progressive", 0 ); // Get aspect ratio this->aspect_ratio = mlt_properties_get_double( this->properties, "aspect_ratio" ); -- 1.7.4.4