summaryrefslogtreecommitdiff
path: root/libavcodec/dca.h
diff options
context:
space:
mode:
authorAlexandra Hájková <alexandra.khirnova@gmail.com>2015-12-30 15:29:03 +0100
committerJanne Grunau <janne-libav@jannau.net>2015-12-31 11:40:32 +0100
commit40d949677335a564f769823f4afdb7e7a3da8d6b (patch)
treec60f63fdd78712994004460b6f6a85cd17eb5a39 /libavcodec/dca.h
parent8563f9887194b07c972c3475d6b51592d77f73f7 (diff)
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.h2
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];