diff options
author | eddyg <[email protected]> | 2009-05-19 22:41:17 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2009-05-19 22:41:17 +0000 |
commit | 2d4f59325e770fae5841550cbaf5e1f5cbe1c81b (patch) | |
tree | 5c9a13912a6d6ad3b1b138346445e798d1fd23b8 /libhb/sync.c | |
parent | 55a8bde07e872d3f87c3d091047a9428a2804240 (diff) |
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
Diffstat (limited to 'libhb/sync.c')
-rw-r--r-- | libhb/sync.c | 4 |
1 files 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 ); |