Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-14 16:47:30 +0400
committerDiego Biurrun <diego@biurrun.de>2013-04-30 14:19:45 +0400
commit38282149b6ce8f4b8361e3b84542ba9aa8a1f32f (patch)
tree028b5282288a6849233274851112fff4e2d0d25b /libavcodec/fft.c
parent42b9150b0d4f0a130c1d93dc991fd5412743a8cf (diff)
ppc: More consistent arch initialization
Diffstat (limited to 'libavcodec/fft.c')
-rw-r--r--libavcodec/fft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c
index 0983e80eb2..5026d2e865 100644
--- a/libavcodec/fft.c
+++ b/libavcodec/fft.c
@@ -159,7 +159,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
#if CONFIG_FFT_FLOAT
if (ARCH_ARM) ff_fft_init_arm(s);
- if (HAVE_ALTIVEC) ff_fft_init_altivec(s);
+ if (ARCH_PPC) ff_fft_init_ppc(s);
if (ARCH_X86) ff_fft_init_x86(s);
if (CONFIG_MDCT) s->mdct_calcw = s->mdct_calc;
#else