mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00

git-subtree-dir: submodules/ffmpeg git-subtree-mainline: 8f5a4f7dc119599d326c72d9a6115973e825491b git-subtree-split: 53fc3dcb6022f35015afd2605ead32bfd7417144
30 lines
1.3 KiB
Makefile
30 lines
1.3 KiB
Makefile
NAME = swscale
|
|
DESC = FFmpeg image rescaling library
|
|
|
|
HEADERS = swscale.h \
|
|
version.h \
|
|
|
|
OBJS = alphablend.o \
|
|
hscale.o \
|
|
hscale_fast_bilinear.o \
|
|
gamma.o \
|
|
input.o \
|
|
options.o \
|
|
output.o \
|
|
rgb2rgb.o \
|
|
slice.o \
|
|
swscale.o \
|
|
swscale_unscaled.o \
|
|
utils.o \
|
|
yuv2rgb.o \
|
|
vscale.o \
|
|
|
|
OBJS-$(CONFIG_SHARED) += log2_tab.o
|
|
|
|
# Windows resource file
|
|
SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
|
|
|
|
TESTPROGS = colorspace \
|
|
pixdesc_query \
|
|
swscale \
|