diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-19 04:57:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-19 05:36:26 +0200 |
commit | e9f7c7aef96dd8ca3519f0cfaa52573cf63a1d74 (patch) | |
tree | d226fd3180a0d4de12d6872fe2e76233ce316958 /libswscale/Makefile | |
parent | 76899be1135563dca27a95e8a7a86506b0750350 (diff) | |
download | ffmpeg-e9f7c7aef96dd8ca3519f0cfaa52573cf63a1d74.tar.gz |
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/Makefile | 3 |
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 \ |