mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Simplify usePal() macro, make it use av_pix_fmt_descriptors.
Originally committed as revision 30172 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
b3cf7cb144
commit
f412d5e97a
@ -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…
Reference in New Issue
Block a user