comparison fft.h @ 11532:e011e73a902b libavcodec

ARM: NEON optimised RDFT
author mru
date Tue, 23 Mar 2010 03:35:02 +0000
parents c4d18d452f82
children f468aac92300
comparison
equal deleted inserted replaced
11531:31033caa5344 11532:e011e73a902b
205 * @param trans the type of transform 205 * @param trans the type of transform
206 */ 206 */
207 int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans); 207 int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans);
208 void ff_rdft_end(RDFTContext *s); 208 void ff_rdft_end(RDFTContext *s);
209 209
210 void ff_rdft_init_arm(RDFTContext *s);
211
210 static av_always_inline void ff_rdft_calc(RDFTContext *s, FFTSample *data) 212 static av_always_inline void ff_rdft_calc(RDFTContext *s, FFTSample *data)
211 { 213 {
212 s->rdft_calc(s, data); 214 s->rdft_calc(s, data);
213 } 215 }
214 216