From 6107edade91b4c2764aa666c5dff5086c4a77a02 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Wed, 14 Jan 2009 08:54:26 +0000 Subject: [PATCH] consumer_avformat.c: set consumer buffer prefill to 1 by default. git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1317 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/avformat/consumer_avformat.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/modules/avformat/consumer_avformat.c b/src/modules/avformat/consumer_avformat.c index e6fa1c3..5a24e96 100644 --- a/src/modules/avformat/consumer_avformat.c +++ b/src/modules/avformat/consumer_avformat.c @@ -174,6 +174,7 @@ mlt_consumer consumer_avformat_init( mlt_profile profile, char *arg ) // Default to separate processing threads for producer and consumer with no frame dropping! mlt_properties_set_int( properties, "real_time", -1 ); + mlt_properties_set_int( properties, "prefill", 1 ); // Set up start/stop/terminated callbacks this->start = consumer_start; -- 1.7.4.4