diff options
author | van <[email protected]> | 2008-11-25 07:55:51 +0000 |
---|---|---|
committer | van <[email protected]> | 2008-11-25 07:55:51 +0000 |
commit | 98d6ebb52840ae25250364cdc002a97560d6c3f1 (patch) | |
tree | a57f6161cc638bbfa13d03d9a36940ea4256cf34 /libhb/common.h | |
parent | 46d2066439531f530ddff7fa3e4bb7a2b003f704 (diff) |
- add John A. Stebbins' changes to handle TrueHD and DTS-HD multiplexed streams.
- give transport streams their own demuxer rather than constructing fake PS packets to use the DVD demuxer.
- start re-doing the transport stream code so it does fewer memory to memory copies.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1953 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index 44706afb7..95b50e9da 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -461,7 +461,7 @@ struct hb_title_s int rate; int rate_base; int crop[4]; - enum { HB_MPEG2_DEMUXER = 0, HB_NULL_DEMUXER } demuxer; + enum { HB_MPEG2_PS_DEMUXER = 0, HB_MPEG2_TS_DEMUXER, HB_NULL_DEMUXER } demuxer; int detected_interlacing; int video_id; /* demuxer stream id for video */ int video_codec; /* worker object id of video codec */ |