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:
authorMatthieu Bouron <matthieu.bouron@gmail.com>2017-01-09 17:26:37 +0300
committerMatthieu Bouron <matthieu.bouron@gmail.com>2017-01-13 23:24:19 +0300
commit0265aec5650dcb17a8e3e8b0a36c3979dbd64188 (patch)
tree6747c18fe409f453b08098632b5bc400ef921327 /libswresample/resample_dsp.c
parent2eaee6e79bfb1d495181aaa0e54b8c955c473f0e (diff)
swresample/aarch64: add ff_resample_common_apply_filter_{x4,x8}_{float,s16}_neon
Diffstat (limited to 'libswresample/resample_dsp.c')
-rw-r--r--libswresample/resample_dsp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/resample_dsp.c b/libswresample/resample_dsp.c
index 6ffbb87766..b2424eb6f7 100644
--- a/libswresample/resample_dsp.c
+++ b/libswresample/resample_dsp.c
@@ -70,4 +70,5 @@ void swri_resample_dsp_init(ResampleContext *c)
if (ARCH_X86) swri_resample_dsp_x86_init(c);
else if (ARCH_ARM) swri_resample_dsp_arm_init(c);
+ else if (ARCH_AARCH64) swri_resample_dsp_aarch64_init(c);
}