diff options
author | Måns Rullgård <mans@mansr.com> | 2010-04-12 20:45:33 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-04-12 20:45:33 +0000 |
commit | 08255107cf4f206a8172ffdf7abe5ffa4817dd3f (patch) | |
tree | 4ac9434e54f90592cc44af347097d5971d39f93f /libavcodec/dcadsp.c | |
parent | e168a5567a2b4c2e381bba081c93eb747ec886ca (diff) | |
download | ffmpeg-08255107cf4f206a8172ffdf7abe5ffa4817dd3f.tar.gz |
DCA: ARM/NEON optimised lfe_fir
Originally committed as revision 22863 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dcadsp.c')
-rw-r--r-- | libavcodec/dcadsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dcadsp.c b/libavcodec/dcadsp.c index fcd3b85451..af48e3ce42 100644 --- a/libavcodec/dcadsp.c +++ b/libavcodec/dcadsp.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" #include "dcadsp.h" static void dca_lfe_fir_c(float *out, const float *in, const float *coefs, @@ -46,4 +47,5 @@ static void dca_lfe_fir_c(float *out, const float *in, const float *coefs, void ff_dcadsp_init(DCADSPContext *s) { s->lfe_fir = dca_lfe_fir_c; + if (ARCH_ARM) ff_dcadsp_init_arm(s); } |