mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Remove workaround for rgb/bgr mess.
Originally committed as revision 27520 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
7372e9bbe5
commit
d52337af70
@ -221,7 +221,7 @@ const char *sws_format_name(int format);
|
||||
|| (x)==PIX_FMT_GRAY16LE \
|
||||
)
|
||||
#define isRGB(x) ( \
|
||||
(x)==PIX_FMT_BGR32 \
|
||||
(x)==PIX_FMT_RGB32 \
|
||||
|| (x)==PIX_FMT_RGB24 \
|
||||
|| (x)==PIX_FMT_RGB565 \
|
||||
|| (x)==PIX_FMT_RGB555 \
|
||||
@ -231,7 +231,7 @@ const char *sws_format_name(int format);
|
||||
|| (x)==PIX_FMT_MONOBLACK \
|
||||
)
|
||||
#define isBGR(x) ( \
|
||||
(x)==PIX_FMT_RGB32 \
|
||||
(x)==PIX_FMT_BGR32 \
|
||||
|| (x)==PIX_FMT_BGR24 \
|
||||
|| (x)==PIX_FMT_BGR565 \
|
||||
|| (x)==PIX_FMT_BGR555 \
|
||||
|
Loading…
Reference in New Issue
Block a user