Mercurial > libavcodec.hg
comparison x86/fft.h @ 10199:38ab367d4231 libavcodec
Merge FFTContext and MDCTContext
author | mru |
---|---|
date | Sun, 20 Sep 2009 17:30:20 +0000 |
parents | 5cf49858179a |
children | 4b3da727d832 |
comparison
equal
deleted
inserted
replaced
10198:78af613fc316 | 10199:38ab367d4231 |
---|---|
24 void ff_fft_permute_sse(FFTContext *s, FFTComplex *z); | 24 void ff_fft_permute_sse(FFTContext *s, FFTComplex *z); |
25 void ff_fft_calc_sse(FFTContext *s, FFTComplex *z); | 25 void ff_fft_calc_sse(FFTContext *s, FFTComplex *z); |
26 void ff_fft_calc_3dn(FFTContext *s, FFTComplex *z); | 26 void ff_fft_calc_3dn(FFTContext *s, FFTComplex *z); |
27 void ff_fft_calc_3dn2(FFTContext *s, FFTComplex *z); | 27 void ff_fft_calc_3dn2(FFTContext *s, FFTComplex *z); |
28 | 28 |
29 void ff_imdct_calc_3dn(MDCTContext *s, FFTSample *output, const FFTSample *input); | 29 void ff_imdct_calc_3dn(FFTContext *s, FFTSample *output, const FFTSample *input); |
30 void ff_imdct_half_3dn(MDCTContext *s, FFTSample *output, const FFTSample *input); | 30 void ff_imdct_half_3dn(FFTContext *s, FFTSample *output, const FFTSample *input); |
31 void ff_imdct_calc_3dn2(MDCTContext *s, FFTSample *output, const FFTSample *input); | 31 void ff_imdct_calc_3dn2(FFTContext *s, FFTSample *output, const FFTSample *input); |
32 void ff_imdct_half_3dn2(MDCTContext *s, FFTSample *output, const FFTSample *input); | 32 void ff_imdct_half_3dn2(FFTContext *s, FFTSample *output, const FFTSample *input); |
33 void ff_imdct_calc_sse(MDCTContext *s, FFTSample *output, const FFTSample *input); | 33 void ff_imdct_calc_sse(FFTContext *s, FFTSample *output, const FFTSample *input); |
34 void ff_imdct_half_sse(MDCTContext *s, FFTSample *output, const FFTSample *input); | 34 void ff_imdct_half_sse(FFTContext *s, FFTSample *output, const FFTSample *input); |
35 | 35 |
36 #endif | 36 #endif |