Searched refs:fft_calc (Results 1 – 17 of 17) sorted by relevance
/third_party/ffmpeg/libavcodec/x86/ |
D | fft_init.c | 38 s->fft_calc = ff_fft_calc_sse; in ff_fft_init_x86() 44 s->fft_calc = ff_fft_calc_avx; in ff_fft_init_x86()
|
D | fft.asm | 473 cglobal fft_calc, 2,5,8 488 cglobal fft_calc, 2,5,8
|
/third_party/ffmpeg/libavcodec/arm/ |
D | fft_init_arm.c | 43 s->fft_calc = ff_fft_calc_vfp; in ff_fft_init_arm() 52 s->fft_calc = ff_fft_calc_neon; in ff_fft_init_arm()
|
D | mdct_vfp.S | 303 blx ip @ s->fft_calc(s, output)
|
/third_party/ffmpeg/libavcodec/ |
D | rdft.c | 48 s->fft.fft_calc(&s->fft, (FFTComplex*)data); in rdft_calc_c() 85 s->fft.fft_calc(&s->fft, (FFTComplex*)data); in rdft_calc_c()
|
D | on2avc.c | 480 c->fft128.fft_calc(&c->fft128, (FFTComplex*)src); in wtf_end_512() 481 c->fft128.fft_calc(&c->fft128, (FFTComplex*)(src + 128)); in wtf_end_512() 482 c->fft128.fft_calc(&c->fft128, (FFTComplex*)(src + 256)); in wtf_end_512() 483 c->fft128.fft_calc(&c->fft128, (FFTComplex*)(src + 384)); in wtf_end_512() 488 c->fft512.fft_calc(&c->fft512, (FFTComplex*)tmp1); in wtf_end_512() 513 c->fft256.fft_calc(&c->fft256, (FFTComplex*)src); in wtf_end_1024() 514 c->fft256.fft_calc(&c->fft256, (FFTComplex*)(src + 256)); in wtf_end_1024() 515 c->fft256.fft_calc(&c->fft256, (FFTComplex*)(src + 512)); in wtf_end_1024() 516 c->fft256.fft_calc(&c->fft256, (FFTComplex*)(src + 768)); in wtf_end_1024() 521 c->fft1024.fft_calc(&c->fft1024, (FFTComplex*)tmp1); in wtf_end_1024()
|
D | mdct_template.c | 124 s->fft_calc(s, z); in ff_imdct_half_c() 191 s->fft_calc(s, x); in ff_mdct_calc_c()
|
D | avfft.c | 45 s->fft_calc(s, z); in av_fft_calc()
|
D | fft.h | 93 void (*fft_calc)(struct FFTContext *s, FFTComplex *z); member
|
D | mdct15.c | 193 s->ptwo_fft.fft_calc(&s->ptwo_fft, s->tmp + l_ptwo*i); in mdct15() 227 s->ptwo_fft.fft_calc(&s->ptwo_fft, s->tmp + l_ptwo*i); in imdct15_half()
|
D | fft_template.c | 222 s->fft_calc = fft_calc_c; in ff_fft_init()
|
D | imc.c | 747 q->fft.fft_calc(&q->fft, q->samples); in imc_imdct256()
|
/third_party/ffmpeg/libavcodec/tests/ |
D | fft.c | 265 static inline void fft_calc(FFTContext *s, FFTComplex *z) in fft_calc() function 270 s->fft_calc(s, z); in fft_calc() 527 fft_calc(s, tab); in main() 603 fft_calc(s, tab); in main()
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | fft_init.c | 159 s->fft_calc = ff_fft_calc_interleave_vsx; in ff_fft_init_ppc() 161 s->fft_calc = ff_fft_calc_interleave_altivec; in ff_fft_init_ppc()
|
D | fft_altivec.S | 354 .macro fft_calc interleave macro 433 fft_calc \suffix
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | fft_init_aarch64.c | 42 s->fft_calc = ff_fft_calc_neon; in ff_fft_init_aarch64()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | fft_mips.c | 402 s->fft_calc(s, z); in ff_imdct_half_mips() 509 s->fft_calc = ff_fft_calc_mips; in ff_fft_init_mips()
|