mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-01-12 00:06:51 +08:00
This is similar to swscale/tests/swscale.c, but significantly cheaper - it merely prints the generated (optimized) operation list for every format conversion. Mostly useful for my own purposes as a regression test when making changes to the ops optimizer. Note the distinction between this and tests/swscale.c, the latter of which tests the result of *applying* an operation list for equality. There is an argument to be made that the two tests could be merged, but I think the amount of overlap is small enough to not be worth the amount of differences.
47 lines
2.3 KiB
Makefile
47 lines
2.3 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 \
|
|
format.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_backend.o \
|
|
ops_chain.o \
|
|
ops_memcpy.o \
|
|
ops_optimizer.o \
|
|
|
|
# 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 \
|