diff options
author | Alexandra Hájková <alexandra.khirnova@gmail.com> | 2015-12-30 15:29:03 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2015-12-31 11:40:32 +0100 |
commit | 40d949677335a564f769823f4afdb7e7a3da8d6b (patch) | |
tree | c60f63fdd78712994004460b6f6a85cd17eb5a39 /libavcodec/dca.h | |
parent | 8563f9887194b07c972c3475d6b51592d77f73f7 (diff) | |
download | ffmpeg-40d949677335a564f769823f4afdb7e7a3da8d6b.tar.gz |
dca: use defines for subband related constants
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'libavcodec/dca.h')
-rw-r--r-- | libavcodec/dca.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca.h b/libavcodec/dca.h index a85470d106..787a9c74de 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -147,7 +147,7 @@ typedef struct DCAAudioHeader { } DCAAudioHeader; typedef struct DCAChan { - DECLARE_ALIGNED(32, int32_t, subband_samples)[DCA_BLOCKS_MAX][DCA_SUBBANDS][8]; + DECLARE_ALIGNED(32, int32_t, subband_samples)[DCA_BLOCKS_MAX][DCA_SUBBANDS][SAMPLES_PER_SUBBAND]; /* Subband samples history (for ADPCM) */ DECLARE_ALIGNED(32, int32_t, subband_samples_hist)[DCA_SUBBANDS][4]; |