summaryrefslogtreecommitdiff
path: root/libavcodec/aarch64/Makefile
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2014-04-20 17:57:36 +0200
committerJanne Grunau <janne-libav@jannau.net>2014-04-22 22:01:45 +0200
commit3956a5e0ea46ed7e27ca888fe11c47986ad99261 (patch)
treee3860b82f58d0efe1524ecc9ac2070d4a9a42874 /libavcodec/aarch64/Makefile
parent8f9fe6ae3461ce270bce6b7083fda5ec314cdad4 (diff)
aarch64: NEON vorbis_inverse_coupling
From the ARMv7 NEON version. 16 times faster as the C version, overall more than 12% faster vorbis decoding on Apple's A7.
Diffstat (limited to 'libavcodec/aarch64/Makefile')
-rw-r--r--libavcodec/aarch64/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile
index 21d169559c..b0ebeb30ef 100644
--- a/libavcodec/aarch64/Makefile
+++ b/libavcodec/aarch64/Makefile
@@ -9,6 +9,7 @@ OBJS-$(CONFIG_VIDEODSP) += aarch64/videodsp_init.o
OBJS-$(CONFIG_RV40_DECODER) += aarch64/rv40dsp_init_aarch64.o
OBJS-$(CONFIG_VC1_DECODER) += aarch64/vc1dsp_init_aarch64.o
+OBJS-$(CONFIG_VORBIS_DECODER) += aarch64/vorbisdsp_init.o
ARMV8-OBJS-$(CONFIG_VIDEODSP) += aarch64/videodsp.o
@@ -21,3 +22,5 @@ NEON-OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_neon.o \
NEON-OBJS-$(CONFIG_HPELDSP) += aarch64/hpeldsp_neon.o
NEON-OBJS-$(CONFIG_MPEGAUDIODSP) += aarch64/mpegaudiodsp_neon.o
NEON-OBJS-$(CONFIG_MDCT) += aarch64/mdct_neon.o
+
+NEON-OBJS-$(CONFIG_VORBIS_DECODER) += aarch64/vorbisdsp_neon.o