From 2d4f59325e770fae5841550cbaf5e1f5cbe1c81b Mon Sep 17 00:00:00 2001 From: eddyg Date: Tue, 19 May 2009 22:41:17 +0000 Subject: [PATCH] Change minimum vobsub time from 3sec to 2sec, been meaning to do this for a while. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2430 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libhb/sync.c b/libhb/sync.c index d76907987..cfc546e1a 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -530,7 +530,7 @@ static void SyncVideo( hb_work_object_t * w ) * * fall through to display */ - if( ( sub->stop - sub->start ) < ( 3 * 90000 ) ) + if( ( sub->stop - sub->start ) < ( 2 * 90000 ) ) { /* * Subtitle is on for less than three @@ -543,7 +543,7 @@ static void SyncVideo( hb_work_object_t * w ) * only displays subs for 1 second - * too fast to read. */ - sub->stop = sub->start + ( 3 * 90000 ); + sub->stop = sub->start + ( 2 * 90000 ); sub2 = hb_fifo_see2( subtitle->fifo_raw ); -- 2.40.0