mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-24 08:48:37 +00:00
This serves two purposes: - there is a test to check that the file is always up-to-date - it can easily be regenerated using fate's own infrastructure
56 lines
2.7 KiB
Makefile
56 lines
2.7 KiB
Makefile
NAME = swscale
|
|
DESC = FFmpeg image rescaling library
|
|
|
|
HEADERS = swscale.h \
|
|
version.h \
|
|
version_major.h \
|
|
|
|
OBJS = alphablend.o \
|
|
cms.o \
|
|
csputils.o \
|
|
hscale.o \
|
|
hscale_fast_bilinear.o \
|
|
filters.o \
|
|
format.o \
|
|
framepool.o \
|
|
gamma.o \
|
|
graph.o \
|
|
input.o \
|
|
lut3d.o \
|
|
options.o \
|
|
output.o \
|
|
rgb2rgb.o \
|
|
slice.o \
|
|
swscale.o \
|
|
swscale_unscaled.o \
|
|
utils.o \
|
|
version.o \
|
|
yuv2rgb.o \
|
|
vscale.o \
|
|
|
|
OBJS-$(CONFIG_UNSTABLE) += \
|
|
ops.o \
|
|
ops_chain.o \
|
|
ops_dispatch.o \
|
|
ops_memcpy.o \
|
|
ops_optimizer.o \
|
|
uops.o \
|
|
uops_backend.o \
|
|
|
|
ifeq ($(CONFIG_UNSTABLE),yes)
|
|
include $(SRC_PATH)/libswscale/vulkan/Makefile
|
|
endif
|
|
|
|
# Objects duplicated from other libraries for shared builds
|
|
SHLIBOBJS += log2_tab.o half2float.o
|
|
|
|
# Windows resource file
|
|
SHLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
|
|
|
|
TESTPROGS = colorspace \
|
|
floatimg_cmp \
|
|
pixdesc_query \
|
|
swscale \
|
|
sws_ops \
|
|
sws_ops_aarch64 \
|