summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvan <[email protected]>2008-12-12 20:45:04 +0000
committervan <[email protected]>2008-12-12 20:45:04 +0000
commit0e3664a72d164d6541c3a8f32146fc6035ecf2f7 (patch)
tree2d87f56c5706d0a62792cb96d24e2b1c73691509
parent47b9304671876792e9a2364e867c9601d0432076 (diff)
Loosen tolerance on Program Stream SCR change - 100ms is too tight for an EyeTV S-Video capture.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2024 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--libhb/demuxmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/demuxmpeg.c b/libhb/demuxmpeg.c
index 9e0a952ee..afeda30c7 100644
--- a/libhb/demuxmpeg.c
+++ b/libhb/demuxmpeg.c
@@ -73,7 +73,7 @@ int hb_demux_ps( hb_buffer_t * buf_ps, hb_list_t * list_es, hb_psdemux_t* state
((uint64_t)(d[pos+2] & 3) << 13) |
((uint64_t)(d[pos+3]) << 5) |
(d[pos+4] >> 3);
- check_mpeg_scr( state, scr, 100 );
+ check_mpeg_scr( state, scr, 300 );
}
pos += 9; /* pack_header */