From 1d3e58c2164a57bd0cec1270cba89cead0d97e88 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Wed, 13 Feb 2008 06:27:18 +0000 Subject: [PATCH] mlt_consumer.c: let consumers use read-ahead processing thread without frame dropping with real_time=-1 git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1069 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/framework/mlt_consumer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/framework/mlt_consumer.c b/src/framework/mlt_consumer.c index 668fe2f..83ef8ff 100644 --- a/src/framework/mlt_consumer.c +++ b/src/framework/mlt_consumer.c @@ -580,7 +580,7 @@ static void *consumer_read_ahead_thread( void *arg ) } // Get the image - if ( !skip_next ) + if ( !skip_next || this->real_time == -1 ) { // Get the image, mark as rendered and time it if ( !video_off ) -- 1.7.4.4