diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-14 14:51:47 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-14 14:51:47 +0000 |
commit | e0b9f94b39d0441a349b43ae0574de4453ec73f1 (patch) | |
tree | 02f4562a6ca888313741c64044ed1e77bf039ca6 /libavcodec/ac3.h | |
parent | ce571ceb456479939f4e19bdb7d0003a60e107b5 (diff) | |
download | ffmpeg-e0b9f94b39d0441a349b43ae0574de4453ec73f1.tar.gz |
cosmetics: use some size macros in ac3tab.c/h
Originally committed as revision 25969 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3.h')
-rw-r--r-- | libavcodec/ac3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h index a9f68dba8a..89a88b65b6 100644 --- a/libavcodec/ac3.h +++ b/libavcodec/ac3.h @@ -27,8 +27,6 @@ #ifndef AVCODEC_AC3_H #define AVCODEC_AC3_H -#include "ac3tab.h" - #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */ #define AC3_MAX_CHANNELS 6 /* including LFE channel */ @@ -39,6 +37,8 @@ #define AC3_WINDOW_SIZE (AC3_BLOCK_SIZE * 2) #define AC3_CRITICAL_BANDS 50 +#include "ac3tab.h" + /* exponent encoding strategy */ #define EXP_REUSE 0 #define EXP_NEW 1 |