diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-06-02 02:54:46 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-06-02 02:54:46 +0000 |
commit | 406113721f53bc85aad006b4247db355f043c211 (patch) | |
tree | ab6af2c9b19e0da27a1b5420cbe4d726661f8b88 /libavcodec/ac3.h | |
parent | 892d226857f9276d94f7734b0cd9af9ac3385086 (diff) | |
download | ffmpeg-406113721f53bc85aad006b4247db355f043c211.tar.gz |
move some AC3HeaderInfo struct fields to the Coded elements group.
Originally committed as revision 13612 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3.h')
-rw-r--r-- | libavcodec/ac3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h index e933f86884..9e9495ab39 100644 --- a/libavcodec/ac3.h +++ b/libavcodec/ac3.h @@ -85,6 +85,9 @@ typedef struct { uint8_t channel_mode; uint8_t lfe_on; uint8_t frame_type; + int center_mix_level; ///< Center mix level index + int surround_mix_level; ///< Surround mix level index + uint16_t channel_map; /** @} */ /** @defgroup derived Derived values @@ -95,9 +98,6 @@ typedef struct { uint32_t bit_rate; uint8_t channels; uint16_t frame_size; - int center_mix_level; ///< Center mix level index - int surround_mix_level; ///< Surround mix level index - uint16_t channel_map; /** @} */ } AC3HeaderInfo; |