diff options
author | eddyg <[email protected]> | 2008-10-29 21:22:53 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-10-29 21:22:53 +0000 |
commit | 1699037ff22da1699cbb02e0465c0605dd2091ea (patch) | |
tree | fb27354abf90859a3df7314032bbc3c49d00cae2 /libhb/common.h | |
parent | bc3633cc5801d61f1c335093b7a61e893ba66528 (diff) |
ETSI TS 102 366 V1.2.1 compliant AC3 in MP4, replaces older hacked version that was hardcoding the AC3 stream information in the dac3 atom based on the AppleTV startup movie stream.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1879 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index c674fd831..adf7a2da4 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -339,6 +339,8 @@ struct hb_audio_config_s int track; /* Input track number */ PRIVATE uint32_t codec; /* Input audio codec */ PRIVATE uint32_t codec_param; /* per-codec config info */ + PRIVATE uint32_t version; /* Bitsream version */ + PRIVATE uint32_t mode; /* Bitstream mode, codec dependent encoding */ PRIVATE int samplerate; /* Input sample rate (Hz) */ PRIVATE int bitrate; /* Input bitrate (kbps) */ PRIVATE int channel_layout; @@ -534,6 +536,8 @@ typedef struct hb_work_info_s int rate; int rate_base; int flags; + int version; + int mode; union { struct { // info only valid for video decoders int width; |