mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
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
|
|
|