summaryrefslogtreecommitdiff
path: root/libavcodec/imc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/imc.c')
-rw-r--r--libavcodec/imc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c
index 93093ebd53..1bbd0b45b8 100644
--- a/libavcodec/imc.c
+++ b/libavcodec/imc.c
@@ -84,8 +84,8 @@ typedef struct {
DSPContext dsp;
FFTContext fft;
- DECLARE_ALIGNED_16(FFTComplex, samples[COEFFS/2]);
- DECLARE_ALIGNED_16(float, out_samples[COEFFS]);
+ DECLARE_ALIGNED_16(FFTComplex, samples)[COEFFS/2];
+ DECLARE_ALIGNED_16(float, out_samples)[COEFFS];
} IMCContext;
static VLC huffman_vlc[4][4];