diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2007-03-11 02:13:05 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2007-03-11 02:13:05 +0000 |
commit | 050aa8b9bca6a2c29e1c4c914e05aca49007f1d7 (patch) | |
tree | d58da1f718db33a9d243668d4940a60a5d455388 /libavcodec/ac3.h | |
parent | 755c18ae5d19f940dfd05d8278637635fd8eece5 (diff) | |
download | ffmpeg-050aa8b9bca6a2c29e1c4c914e05aca49007f1d7.tar.gz |
remove redundancy in AC-3 parser by using common tables from ac3tab.h
Originally committed as revision 8318 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 21cc07044e..28c7f03956 100644 --- a/libavcodec/ac3.h +++ b/libavcodec/ac3.h @@ -45,6 +45,8 @@ typedef struct AC3BitAllocParameters { int cplfleak, cplsleak; } AC3BitAllocParameters; +extern uint16_t ff_ac3_frame_sizes[38][3]; +extern const uint8_t ff_ac3_channels[8]; extern const uint16_t ff_ac3_freqs[3]; extern const uint16_t ff_ac3_bitratetab[19]; extern const int16_t ff_ac3_window[256]; |