mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
32 lines
1.3 KiB
Makefile
32 lines
1.3 KiB
Makefile
NAME = swscale
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = swscale.h
|
|
|
|
OBJS = input.o \
|
|
options.o \
|
|
output.o \
|
|
rgb2rgb.o \
|
|
swscale.o \
|
|
swscale_unscaled.o \
|
|
utils.o \
|
|
yuv2rgb.o \
|
|
|
|
OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \
|
|
bfin/swscale_bfin.o \
|
|
bfin/yuv2rgb_bfin.o
|
|
ALTIVEC-OBJS += ppc/swscale_altivec.o \
|
|
ppc/yuv2rgb_altivec.o \
|
|
ppc/yuv2yuv_altivec.o
|
|
MMX-OBJS += x86/rgb2rgb.o \
|
|
x86/swscale_mmx.o \
|
|
x86/yuv2rgb_mmx.o
|
|
VIS-OBJS += sparc/yuv2rgb_vis.o
|
|
YASM-OBJS += x86/input.o \
|
|
x86/output.o \
|
|
x86/scale.o
|
|
|
|
OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o
|
|
|
|
TESTPROGS = colorspace swscale
|