comparison imc.c @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children 4b3da727d832
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
82 int decoder_reset; 82 int decoder_reset;
83 float one_div_log2; 83 float one_div_log2;
84 84
85 DSPContext dsp; 85 DSPContext dsp;
86 FFTContext fft; 86 FFTContext fft;
87 DECLARE_ALIGNED_16(FFTComplex, samples)[COEFFS/2]; 87 DECLARE_ALIGNED(16, FFTComplex, samples)[COEFFS/2];
88 DECLARE_ALIGNED_16(float, out_samples)[COEFFS]; 88 DECLARE_ALIGNED(16, float, out_samples)[COEFFS];
89 } IMCContext; 89 } IMCContext;
90 90
91 static VLC huffman_vlc[4][4]; 91 static VLC huffman_vlc[4][4];
92 92
93 #define VLC_TABLES_SIZE 9512 93 #define VLC_TABLES_SIZE 9512