diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-02 17:52:34 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-02 17:52:34 +0100 |
commit | 7fe77aa62ea2ca376057436a6c36a759e8273f15 (patch) | |
tree | 95c4471532ba5811cb5f249a6b90909ba46c448f /libavcodec/dca.h | |
parent | 2214207d048187b85cd3af3e54b064f87728aa07 (diff) | |
parent | 40d949677335a564f769823f4afdb7e7a3da8d6b (diff) | |
download | ffmpeg-7fe77aa62ea2ca376057436a6c36a759e8273f15.tar.gz |
Merge commit '40d949677335a564f769823f4afdb7e7a3da8d6b'
* commit '40d949677335a564f769823f4afdb7e7a3da8d6b':
dca: use defines for subband related constants
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
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 5c35bae912..dea82aeb2a 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -149,7 +149,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]; |