summaryrefslogtreecommitdiff
path: root/libswscale/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-19 04:57:47 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-19 05:36:26 +0200
commite9f7c7aef96dd8ca3519f0cfaa52573cf63a1d74 (patch)
treed226fd3180a0d4de12d6872fe2e76233ce316958 /libswscale/Makefile
parent76899be1135563dca27a95e8a7a86506b0750350 (diff)
sws: Move fast bilinear C code into seperate file
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/Makefile')
-rw-r--r--libswscale/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile
index e96837f064..067e2b9410 100644
--- a/libswscale/Makefile
+++ b/libswscale/Makefile
@@ -5,7 +5,8 @@ NAME = swscale
HEADERS = swscale.h \
version.h \
-OBJS = input.o \
+OBJS = hscale_fast_bilinear.o \
+ input.o \
options.o \
output.o \
rgb2rgb.o \