summaryrefslogtreecommitdiff
path: root/libavcodec/fft.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2009-03-16 03:56:42 +0000
committerDavid Conrad <lessen42@gmail.com>2009-03-16 03:56:42 +0000
commit170e6b14f7e8e80e540a73b69863adaf6b4b1dc8 (patch)
treea1527cdef1207b0776adea41967585f56cdbed6a /libavcodec/fft.c
parentdf8843c65f4d23ceadfc8f78a63d4d1632e55c38 (diff)
Remove long unused ALTIVEC_USE_REFERENCE_C_CODE ifdef; all other references
to it were removed in r6606 Originally committed as revision 17997 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 296f634663..a3f1151472 100644
--- a/libavcodec/fft.c
+++ b/libavcodec/fft.c
@@ -106,7 +106,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
s->imdct_half = ff_imdct_half_3dn;
s->fft_calc = ff_fft_calc_3dn;
}
-#elif HAVE_ALTIVEC && !defined ALTIVEC_USE_REFERENCE_C_CODE
+#elif HAVE_ALTIVEC
has_vectors = mm_support();
if (has_vectors & FF_MM_ALTIVEC) {
s->fft_calc = ff_fft_calc_altivec;