diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-23 03:35:02 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-23 03:35:02 +0000 |
commit | a8bb9ea532b718d48bbfec3f94d7cd56cc15c472 (patch) | |
tree | 7d046219695d409bb0166d87d94f9c43d77514dc /libavcodec/fft.h | |
parent | fc4a2d1e8cc06766677d33f4ba4777e256a709fc (diff) | |
download | ffmpeg-a8bb9ea532b718d48bbfec3f94d7cd56cc15c472.tar.gz |
ARM: NEON optimised RDFT
Originally committed as revision 22641 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r-- | libavcodec/fft.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index df7ded99a8..6a8f41e79e 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -207,6 +207,8 @@ struct RDFTContext { int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans); void ff_rdft_end(RDFTContext *s); +void ff_rdft_init_arm(RDFTContext *s); + static av_always_inline void ff_rdft_calc(RDFTContext *s, FFTSample *data) { s->rdft_calc(s, data); |