summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/fft-ffmpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib/fft-ffmpeg.c')
-rw-r--r--apps/codecs/lib/fft-ffmpeg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/codecs/lib/fft-ffmpeg.c b/apps/codecs/lib/fft-ffmpeg.c
index a76f49fd1e..807f606038 100644
--- a/apps/codecs/lib/fft-ffmpeg.c
+++ b/apps/codecs/lib/fft-ffmpeg.c
@@ -276,8 +276,8 @@ static inline FFTComplex* TRANSFORM_ZERO(FFTComplex * z, unsigned int n)
276#endif 276#endif
277 277
278/* z[0...8n-1], w[1...2n-1] */ 278/* z[0...8n-1], w[1...2n-1] */
279void pass(FFTComplex *z_arg, unsigned int STEP_arg, unsigned int n_arg) ICODE_ATTR_TREMOR_MDCT; 279static void pass(FFTComplex *z_arg, unsigned int STEP_arg, unsigned int n_arg) ICODE_ATTR_TREMOR_MDCT;
280void pass(FFTComplex *z_arg, unsigned int STEP_arg, unsigned int n_arg) 280static void pass(FFTComplex *z_arg, unsigned int STEP_arg, unsigned int n_arg)
281{ 281{
282 register FFTComplex * z = z_arg; 282 register FFTComplex * z = z_arg;
283 register unsigned int STEP = STEP_arg; 283 register unsigned int STEP = STEP_arg;
@@ -318,8 +318,8 @@ void pass(FFTComplex *z_arg, unsigned int STEP_arg, unsigned int n_arg)
318 8192/16 (from "ff_cos_16") is 512 bytes. 318 8192/16 (from "ff_cos_16") is 512 bytes.
319 i.e. for fft16, STEP = 8192/16 */ 319 i.e. for fft16, STEP = 8192/16 */
320#define DECL_FFT(n,n2,n4)\ 320#define DECL_FFT(n,n2,n4)\
321void fft##n(FFTComplex *z) ICODE_ATTR_TREMOR_MDCT;\ 321static void fft##n(FFTComplex *z) ICODE_ATTR_TREMOR_MDCT;\
322void fft##n(FFTComplex *z)\ 322static void fft##n(FFTComplex *z)\
323{\ 323{\
324 fft##n2(z);\ 324 fft##n2(z);\
325 fft##n4(z+n4*2);\ 325 fft##n4(z+n4*2);\
@@ -379,8 +379,8 @@ static void fft8_dispatch(FFTComplex *z)
379} 379}
380 380
381#ifndef CONFIG_SMALL 381#ifndef CONFIG_SMALL
382void fft16(FFTComplex *z) ICODE_ATTR_TREMOR_MDCT; 382static void fft16(FFTComplex *z) ICODE_ATTR_TREMOR_MDCT;
383void fft16(FFTComplex *z) 383static void fft16(FFTComplex *z)
384{ 384{
385 fft8(z); 385 fft8(z);
386 fft4(z+8); 386 fft4(z+8);