mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
e0a3173a94
+ split color conversion from scaling - disabled gamma correction, until it's refactored too Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
28 lines
1.1 KiB
Makefile
28 lines
1.1 KiB
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = swscale
|
|
|
|
HEADERS = swscale.h \
|
|
version.h \
|
|
|
|
OBJS = alphablend.o \
|
|
hscale_fast_bilinear.o \
|
|
input.o \
|
|
options.o \
|
|
output.o \
|
|
rgb2rgb.o \
|
|
swscale.o \
|
|
swscale_unscaled.o \
|
|
utils.o \
|
|
yuv2rgb.o \
|
|
slice.o \
|
|
hscale.o \
|
|
|
|
OBJS-$(CONFIG_SHARED) += log2_tab.o
|
|
|
|
# Windows resource file
|
|
SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
|
|
|
|
TESTPROGS = colorspace \
|
|
swscale \
|