comparison mpegaudiodec.c @ 3666:faa8dc533ad3 libavcodec

remove redundant declarations
author mru
date Sat, 02 Sep 2006 23:10:28 +0000
parents 4a93d7102793
children bfcf76cad06a
comparison
equal deleted inserted replaced
3665:9d942506b1f2 3666:faa8dc533ad3
195 SCALE_GEN(4.0 / 3.0), /* 3 steps */ 195 SCALE_GEN(4.0 / 3.0), /* 3 steps */
196 SCALE_GEN(4.0 / 5.0), /* 5 steps */ 196 SCALE_GEN(4.0 / 5.0), /* 5 steps */
197 SCALE_GEN(4.0 / 9.0), /* 9 steps */ 197 SCALE_GEN(4.0 / 9.0), /* 9 steps */
198 }; 198 };
199 199
200 void ff_mpa_synth_init(MPA_INT *window);
201 static MPA_INT window[512] __attribute__((aligned(16))); 200 static MPA_INT window[512] __attribute__((aligned(16)));
202 201
203 /* layer 1 unscaling */ 202 /* layer 1 unscaling */
204 /* n = number of bits of the mantissa minus 1 */ 203 /* n = number of bits of the mantissa minus 1 */
205 static inline int l1_unscale(int n, int mant, int scale_factor) 204 static inline int l1_unscale(int n, int mant, int scale_factor)