Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2017-12-17 22:10:32 +0300
committerAurelien Jacobs <aurel@gnuage.org>2018-03-08 00:26:53 +0300
commitf677718bc87a96c05edda25be7e8c9b9dc357f5d (patch)
treead0f9a66ba77ff6817d77a9bfe40b2c1fa0fa4b2 /libavcodec/sbcdsp.c
parentf1e490b1adedd90ce35db894520ccc61cacb991d (diff)
sbcenc: add armv6 and neon asm optimizations
This was originally based on libsbc, and was fully integrated into ffmpeg.
Diffstat (limited to 'libavcodec/sbcdsp.c')
-rw-r--r--libavcodec/sbcdsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/sbcdsp.c b/libavcodec/sbcdsp.c
index 2d0addcf28..e745595da0 100644
--- a/libavcodec/sbcdsp.c
+++ b/libavcodec/sbcdsp.c
@@ -380,6 +380,8 @@ av_cold void ff_sbcdsp_init(SBCDSPContext *s)
s->sbc_calc_scalefactors = sbc_calc_scalefactors;
s->sbc_calc_scalefactors_j = sbc_calc_scalefactors_j;
+ if (ARCH_ARM)
+ ff_sbcdsp_init_arm(s);
if (ARCH_X86)
ff_sbcdsp_init_x86(s);
}