mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-25 22:19:17 +00:00
Merge FFTContext and MDCTContext
Originally committed as revision 19931 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ec129499b8
commit
01b2214758
22 changed files with 91 additions and 99 deletions
|
@ -23,9 +23,9 @@
|
|||
void ff_fft_permute_neon(FFTContext *s, FFTComplex *z);
|
||||
void ff_fft_calc_neon(FFTContext *s, FFTComplex *z);
|
||||
|
||||
void ff_imdct_calc_neon(MDCTContext *s, FFTSample *output, const FFTSample *input);
|
||||
void ff_imdct_half_neon(MDCTContext *s, FFTSample *output, const FFTSample *input);
|
||||
void ff_mdct_calc_neon(MDCTContext *s, FFTSample *output, const FFTSample *input);
|
||||
void ff_imdct_calc_neon(FFTContext *s, FFTSample *output, const FFTSample *input);
|
||||
void ff_imdct_half_neon(FFTContext *s, FFTSample *output, const FFTSample *input);
|
||||
void ff_mdct_calc_neon(FFTContext *s, FFTSample *output, const FFTSample *input);
|
||||
|
||||
av_cold void ff_fft_init_arm(FFTContext *s)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue