From 2654f65485b009783b79a0feb5bbd67e794ab8e1 Mon Sep 17 00:00:00 2001 From: eddyg Date: Tue, 26 Feb 2008 00:51:49 +0000 Subject: [PATCH] Set an minimum subtitle display time of three seconds *or* until the next subtitle is displayed. This makes subtitles easier to read for the slow readers or for the DVD authors why display the subtitles for too short a period (e.g. only display the subtitles during the talking in a fast speaking tongue). git-svn-id: svn://localhost/HandBrake/trunk@1317 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/sync.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/libhb/sync.c b/libhb/sync.c index 78252fb2..04bdf162 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -463,6 +463,26 @@ static int SyncVideo( hb_work_object_t * w ) * * fall through to display */ + if( ( sub->stop - sub->start ) < ( 3 * 90000 ) ) + { + /* + * Subtitle is on for less than three seconds, extend + * the time that it is displayed to make it easier + * to read. Make it 3 seconds or until the next + * subtitle is displayed. + * + * This is in response to Indochine which only + * displays subs for 1 second - too fast to read. + */ + sub->stop = sub->start + ( 3 * 90000 ); + + sub2 = hb_fifo_see2( pv->subtitle->fifo_raw ); + + if( sub2 && sub->stop > sub2->start ) + { + sub->stop = sub2->start; + } + } } else { -- 2.11.0