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@stupeflix.com>2016-04-07 17:52:00 +0300
committerMatthieu Bouron <matthieu.bouron@stupeflix.com>2016-04-09 01:16:56 +0300
commit7abc8e7ae3aa9221dddafe2a08b07eb3744428fa (patch)
tree094a995ac127b337d8d995cbf9022c06f06421b4 /libswscale/arm/Makefile
parentdee138624fdf0997a46f04672f0ec50782403e45 (diff)
swscale/arm: add ff_hscale_8_to_15_neon
Diffstat (limited to 'libswscale/arm/Makefile')
-rw-r--r--libswscale/arm/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libswscale/arm/Makefile b/libswscale/arm/Makefile
index 9ccec3bbc0..b8b013465c 100644
--- a/libswscale/arm/Makefile
+++ b/libswscale/arm/Makefile
@@ -1,5 +1,7 @@
-OBJS += arm/swscale_unscaled.o
+OBJS += arm/swscale.o \
+ arm/swscale_unscaled.o \
NEON-OBJS += arm/rgb2yuv_neon_32.o
NEON-OBJS += arm/rgb2yuv_neon_16.o
-NEON-OBJS += arm/yuv2rgb_neon.o
+NEON-OBJS += arm/hscale.o \
+ arm/yuv2rgb_neon.o \