From 5d315fef65f55c968871c390ba762caa8a23cdc0 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Wed, 5 May 2004 18:09:46 +0000 Subject: [PATCH] last sdl fix for now (sigh) git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@306 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 b066393..72a9a90 100644 --- a/src/modules/sdl/consumer_sdl.c +++ b/src/modules/sdl/consumer_sdl.c @@ -562,7 +562,7 @@ static void *video_thread( void *arg ) mlt_position difference = scheduled - elapsed; // Smooth playback a bit - if ( difference > 10000 && speed == 1.0 ) + if ( difference > 20000 && speed == 1.0 ) { tm.tv_sec = difference / 1000000; tm.tv_nsec = ( difference % 1000000 ) * 500; -- 1.7.4.4