diff options
Diffstat (limited to 'libavcodec/imc.c')
-rw-r--r-- | libavcodec/imc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c index 93093eb..1bbd0b4 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]; |