diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-09 19:51:50 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-24 16:30:49 +0000 |
commit | f4855a904e4d3a12822739cda149262f98e8723a (patch) | |
tree | f9a98438f7ed84b21096fec7a2d962360c4e5479 /libavcodec/ac3dsp.c | |
parent | f71142496931d264ceeedfaac399eba07b7c5def (diff) | |
download | ffmpeg-f4855a904e4d3a12822739cda149262f98e8723a.tar.gz |
ac3enc: NEON optimised ac3_max_msb_abs_int16 and ac3_exponent_min
Diffstat (limited to 'libavcodec/ac3dsp.c')
-rw-r--r-- | libavcodec/ac3dsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c index db97229963..42b44f7db8 100644 --- a/libavcodec/ac3dsp.c +++ b/libavcodec/ac3dsp.c @@ -109,6 +109,8 @@ av_cold void ff_ac3dsp_init(AC3DSPContext *c, int bit_exact) c->ac3_rshift_int32 = ac3_rshift_int32_c; c->float_to_fixed24 = float_to_fixed24_c; + if (ARCH_ARM) + ff_ac3dsp_init_arm(c, bit_exact); if (HAVE_MMX) ff_ac3dsp_init_x86(c, bit_exact); } |