summaryrefslogtreecommitdiff
path: root/libavcodec/rdft.c
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/rdft.c
parentfc4a2d1e8cc06766677d33f4ba4777e256a709fc (diff)
ARM: NEON optimised RDFT
Originally committed as revision 22641 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rdft.c')
-rw-r--r--libavcodec/rdft.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/rdft.c b/libavcodec/rdft.c
index 29fedc8767..457abeea78 100644
--- a/libavcodec/rdft.c
+++ b/libavcodec/rdft.c
@@ -121,6 +121,9 @@ av_cold int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans)
}
#endif
s->rdft_calc = ff_rdft_calc_c;
+
+ if (ARCH_ARM) ff_rdft_init_arm(s);
+
return 0;
}