diff options
author | Måns Rullgård <mans@mansr.com> | 2009-09-15 23:14:55 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-09-15 23:14:55 +0000 |
commit | 68336ea8d4874d6d04fd300b897ea567f49bc8c4 (patch) | |
tree | 538eaa64fd81b51a75891369702c74694e73492d /libavcodec | |
parent | f486321395e3804ceece2a562f4bf1a8d99d5f24 (diff) | |
download | ffmpeg-68336ea8d4874d6d04fd300b897ea567f49bc8c4.tar.gz |
10l: fix ff_fft_init_arm() prototype
Originally committed as revision 19865 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index d100d5f731..d9d7d16817 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -699,7 +699,7 @@ void ff_fft_calc_c(FFTContext *s, FFTComplex *z); void ff_fft_init_altivec(FFTContext *s); void ff_fft_init_mmx(FFTContext *s); -void ff_fft_init_neon(FFTContext *s); +void ff_fft_init_arm(FFTContext *s); /** * Do the permutation needed BEFORE calling ff_fft_calc(). |