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/rdft.c | |
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/rdft.c')
-rw-r--r-- | libavcodec/rdft.c | 3 |
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; } |