summaryrefslogtreecommitdiff
path: root/libavcodec/fft.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-23 03:35:02 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-23 03:35:02 +0000
commita8bb9ea532b718d48bbfec3f94d7cd56cc15c472 (patch)
tree7d046219695d409bb0166d87d94f9c43d77514dc /libavcodec/fft.h
parentfc4a2d1e8cc06766677d33f4ba4777e256a709fc (diff)
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.h2
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);