diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-14 14:50:40 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-14 14:50:40 +0000 |
commit | 1fda2c10f640d9706d0ae0eda815e8f723a1d35d (patch) | |
tree | 9e4f20036f5fba585759c52ecf2ff26d7e7d95c4 /libavcodec/ac3.h | |
parent | 7066cc8f2b29ac5851b4f74e353b34bf0251bd8b (diff) | |
download | ffmpeg-1fda2c10f640d9706d0ae0eda815e8f723a1d35d.tar.gz |
cosmetics: Define AC3_WINDOW_SIZE and use it instead of AC3_BLOCK_SIZE*2.
Originally committed as revision 25951 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3.h')
-rw-r--r-- | libavcodec/ac3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h index 7cfa51a0c6..1840766813 100644 --- a/libavcodec/ac3.h +++ b/libavcodec/ac3.h @@ -36,6 +36,7 @@ #define AC3_BLOCK_SIZE 256 #define AC3_MAX_BLOCKS 6 #define AC3_FRAME_SIZE (AC3_MAX_BLOCKS * 256) +#define AC3_WINDOW_SIZE (AC3_BLOCK_SIZE * 2) /* exponent encoding strategy */ #define EXP_REUSE 0 |