comparison fft.c @ 9177:4b1736ba9f2f libavcodec

Remove long unused ALTIVEC_USE_REFERENCE_C_CODE ifdef; all other references to it were removed in r6606
author conrad
date Mon, 16 Mar 2009 03:56:42 +0000
parents dc19e4d7d0eb
children c5e8a5a044c3
comparison
equal deleted inserted replaced
9176:e353d3a41e0b 9177:4b1736ba9f2f
104 /* 3DNow! for K6-2/3 */ 104 /* 3DNow! for K6-2/3 */
105 s->imdct_calc = ff_imdct_calc_3dn; 105 s->imdct_calc = ff_imdct_calc_3dn;
106 s->imdct_half = ff_imdct_half_3dn; 106 s->imdct_half = ff_imdct_half_3dn;
107 s->fft_calc = ff_fft_calc_3dn; 107 s->fft_calc = ff_fft_calc_3dn;
108 } 108 }
109 #elif HAVE_ALTIVEC && !defined ALTIVEC_USE_REFERENCE_C_CODE 109 #elif HAVE_ALTIVEC
110 has_vectors = mm_support(); 110 has_vectors = mm_support();
111 if (has_vectors & FF_MM_ALTIVEC) { 111 if (has_vectors & FF_MM_ALTIVEC) {
112 s->fft_calc = ff_fft_calc_altivec; 112 s->fft_calc = ff_fft_calc_altivec;
113 split_radix = 0; 113 split_radix = 0;
114 } 114 }