Browse Source

fft: Remove pointless #ifdefs around function declarations

tags/n2.0
Diego Biurrun 12 years ago
parent
commit
42b9150b0d
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavcodec/fft.h

+ 1
- 3
libavcodec/fft.h View File

@@ -133,13 +133,11 @@ void ff_init_ff_cos_tabs(int index);
*/
int ff_fft_init(FFTContext *s, int nbits, int inverse);

#if CONFIG_FFT_FLOAT
void ff_fft_init_altivec(FFTContext *s);
void ff_fft_init_x86(FFTContext *s);
void ff_fft_init_arm(FFTContext *s);
#else
void ff_fft_fixed_init_arm(FFTContext *s);
#endif

void ff_fft_end(FFTContext *s);



Loading…
Cancel
Save