diff options
author | Bartlomiej Wolowiec <bartek.wolowiec@gmail.com> | 2008-04-22 11:14:01 +0000 |
---|---|---|
committer | Bartlomiej Wolowiec <bartek.wolowiec@gmail.com> | 2008-04-22 11:14:01 +0000 |
commit | 55736cfbd22e0a7c10a85eb0d5cc7a22bf841322 (patch) | |
tree | 7932cad0cfa77d10edbb6f526eec5cd81cb41c80 /libavcodec/ac3.h | |
parent | 0ec1eb6906619e60b9862d7bea1438e2511f61f0 (diff) | |
download | ffmpeg-55736cfbd22e0a7c10a85eb0d5cc7a22bf841322.tar.gz |
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
Originally committed as revision 12922 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3.h')
-rw-r--r-- | libavcodec/ac3.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h index 0d1a850c9e..cc91f20191 100644 --- a/libavcodec/ac3.h +++ b/libavcodec/ac3.h @@ -95,6 +95,8 @@ 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 /** @} */ } AC3HeaderInfo; |