diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-06 16:36:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-08 13:24:52 +0200 |
commit | d0e0757e9a965549a63fa7f6f7c4542883f80d18 (patch) | |
tree | ba1a633ea8651ddac9078622c24a5b84dc5fd78c /libswscale/Makefile | |
parent | c382d9e8cbee7635755a559fcd03834aa3daa3a7 (diff) | |
download | ffmpeg-d0e0757e9a965549a63fa7f6f7c4542883f80d18.tar.gz |
swscale: Implement alphablendaway for planar 4:4:4 formats
Fixes Ticket4746
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 a60b05748d..b11e789237 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -5,7 +5,8 @@ NAME = swscale HEADERS = swscale.h \ version.h \ -OBJS = hscale_fast_bilinear.o \ +OBJS = alphablend.o \ + hscale_fast_bilinear.o \ input.o \ options.o \ output.o \ |