Mercurial > mplayer.hg
annotate libswscale/Makefile @ 30784:7e887f9d634d
Fill the r, g, b values used for computing the c->pal_yuv table in the
case where the source format is PIX_FMT_GRAY8.
This is required as PIX_FMT_GRAY8 has been declared as a paletted
format in FFmpeg r22191, fix GRAY8 -> RGB conversion.
author | stefano |
---|---|
date | Thu, 04 Mar 2010 00:31:13 +0000 |
parents | 3e858991e23d |
children | 6502a6b24f9b |
rev | line source |
---|---|
26314 | 1 include $(SUBDIR)../config.mak |
18861 | 2 |
26168
11928ea84b90
cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.
diego
parents:
26161
diff
changeset
|
3 NAME = swscale |
26154 | 4 FFLIBS = avutil |
20397 | 5 |
27936
72fefc25df4b
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
27855
diff
changeset
|
6 HEADERS = swscale.h |
72fefc25df4b
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
27855
diff
changeset
|
7 |
30369
8c479cb29c7a
Split swscale.c into scaler code (swscale.c) and utility code (utils.c).
ramiro
parents:
29147
diff
changeset
|
8 OBJS = options.o rgb2rgb.o swscale.o utils.o yuv2rgb.o |
21991 | 9 |
29042 | 10 OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \ |
11 bfin/swscale_bfin.o \ | |
12 bfin/yuv2rgb_bfin.o | |
29028 | 13 OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o |
14 OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o | |
15 OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o | |
16 | |
17 MMX-OBJS-$(CONFIG_GPL) += x86/yuv2rgb_mmx.o \ | |
18 | |
30397
3e858991e23d
Rename swscale-example to swscale-test, to better reflect the intended
stefano
parents:
30369
diff
changeset
|
19 TESTPROGS = colorspace swscale |
27854 | 20 |
29028 | 21 DIRS = bfin mlib ppc sparc x86 |
22 | |
26314 | 23 include $(SUBDIR)../subdir.mak |