1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-11 14:30:22 +02:00

swscale: use a function for isBayer

This commit is contained in:
Clément Bœsch
2017-03-19 15:04:53 +01:00
parent 9c2436e1e7
commit c30875e8b2

View File

@ -760,20 +760,12 @@ static av_always_inline int isGray(enum AVPixelFormat pix_fmt)
|| (x) == AV_PIX_FMT_BGR24 \ || (x) == AV_PIX_FMT_BGR24 \
) )
#define isBayer(x) ( \ static av_always_inline int isBayer(enum AVPixelFormat pix_fmt)
(x)==AV_PIX_FMT_BAYER_BGGR8 \ {
|| (x)==AV_PIX_FMT_BAYER_BGGR16LE \ const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
|| (x)==AV_PIX_FMT_BAYER_BGGR16BE \ av_assert0(desc);
|| (x)==AV_PIX_FMT_BAYER_RGGB8 \ return !!(desc->flags & AV_PIX_FMT_FLAG_BAYER);
|| (x)==AV_PIX_FMT_BAYER_RGGB16LE \ }
|| (x)==AV_PIX_FMT_BAYER_RGGB16BE \
|| (x)==AV_PIX_FMT_BAYER_GBRG8 \
|| (x)==AV_PIX_FMT_BAYER_GBRG16LE \
|| (x)==AV_PIX_FMT_BAYER_GBRG16BE \
|| (x)==AV_PIX_FMT_BAYER_GRBG8 \
|| (x)==AV_PIX_FMT_BAYER_GRBG16LE \
|| (x)==AV_PIX_FMT_BAYER_GRBG16BE \
)
#define isAnyRGB(x) \ #define isAnyRGB(x) \
( \ ( \