diff options
author | van <[email protected]> | 2008-10-03 05:10:21 +0000 |
---|---|---|
committer | van <[email protected]> | 2008-10-03 05:10:21 +0000 |
commit | d788a4e391e103413ac92e7513bf6d0e13e11a65 (patch) | |
tree | 1f3405713226bde9afafde48275d48ee3eb13d05 /libhb/common.h | |
parent | ccf8c8ce045d6e48194315dc4a42dc0d1a3b515c (diff) |
- Only do 'lost PCR' checks (r1712) when we're dealing with something that could be an over-the-air transport stream. We can't lose the clock of a program stream and shouldn't have losses on an m2ts stream.
- Widen the DTS-to-PCR acceptance window from +-5sec to +-5min since there's nothing in the standard that bounds the offset between a DTS and its clock reference.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1802 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index 018055894..a5cfcf493 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -452,7 +452,8 @@ struct hb_title_s int video_id; /* demuxer stream id for video */ int video_codec; /* worker object id of video codec */ int video_codec_param; /* codec specific config */ - + int flaky_clock; /* can lose reference clock */ + /* (for over-the-air transport streams) */ const char *video_codec_name; int video_bitrate; const char *container_name; |