comparison ppc/fft_altivec.c @ 10175:5cf49858179a libavcodec

Move per-arch fft init bits into the corresponding subdirs
author mru
date Tue, 15 Sep 2009 21:14:14 +0000
parents 7cee7292d5cc
children 4b3da727d832
comparison
equal deleted inserted replaced
10174:89cd870ca180 10175:5cf49858179a
131 nloops = nloops << 1; 131 nloops = nloops << 1;
132 } while (nblocks != 0); 132 } while (nblocks != 0);
133 133
134 POWERPC_PERF_STOP_COUNT(altivec_fft_num, s->nbits >= 6); 134 POWERPC_PERF_STOP_COUNT(altivec_fft_num, s->nbits >= 6);
135 } 135 }
136
137 av_cold void ff_fft_init_altivec(FFTContext *s)
138 {
139 s->fft_calc = ff_fft_calc_altivec;
140 s->split_radix = 0;
141 }