Browse Source

Simplify usePal() macro, make it use av_pix_fmt_descriptors.

Originally committed as revision 30172 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.6
Stefano Sabatini 16 years ago
parent
commit
f412d5e97a
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      libswscale/swscale.c

+ 1
- 7
libswscale/swscale.c View File

@@ -188,13 +188,7 @@ const char * swscale_license(void)
|| isRGB(x) \
|| isBGR(x) \
)
#define usePal(x) ( \
(x)==PIX_FMT_PAL8 \
|| (x)==PIX_FMT_BGR4_BYTE \
|| (x)==PIX_FMT_RGB4_BYTE \
|| (x)==PIX_FMT_BGR8 \
|| (x)==PIX_FMT_RGB8 \
)
#define usePal(x) (av_pix_fmt_descriptors[x].flags & PIX_FMT_PAL)

#define RGB2YUV_SHIFT 15
#define BY ( (int)(0.114*219/255*(1<<RGB2YUV_SHIFT)+0.5))


Loading…
Cancel
Save