summaryrefslogtreecommitdiffstats
path: root/libhb/sync.c
diff options
context:
space:
mode:
authoreddyg <[email protected]>2009-05-19 22:41:17 +0000
committereddyg <[email protected]>2009-05-19 22:41:17 +0000
commit2d4f59325e770fae5841550cbaf5e1f5cbe1c81b (patch)
tree5c9a13912a6d6ad3b1b138346445e798d1fd23b8 /libhb/sync.c
parent55a8bde07e872d3f87c3d091047a9428a2804240 (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.c4
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 );