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.

28 lines
977B

  1. NAME = swscale
  2. FFLIBS = avutil
  3. HEADERS = swscale.h
  4. OBJS = input.o options.o output.o rgb2rgb.o swscale.o \
  5. swscale_unscaled.o utils.o yuv2rgb.o
  6. OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \
  7. bfin/swscale_bfin.o \
  8. bfin/yuv2rgb_bfin.o
  9. OBJS-$(HAVE_ALTIVEC) += ppc/swscale_altivec.o \
  10. ppc/yuv2rgb_altivec.o \
  11. ppc/yuv2yuv_altivec.o
  12. OBJS-$(HAVE_MMX) += x86/rgb2rgb.o \
  13. x86/swscale_mmx.o \
  14. x86/yuv2rgb_mmx.o
  15. OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o
  16. MMX-OBJS-$(HAVE_YASM) += x86/input.o \
  17. x86/output.o \
  18. x86/scale.o
  19. OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o
  20. TESTPROGS = colorspace swscale
  21. DIRS = bfin ppc sparc x86