Commit f0d3a031 authored by Michael Niedermayer's avatar Michael Niedermayer

sws: include isRGB in isAnyRGB() so that future RGB formats wont be missed again

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 02001a37
......@@ -716,6 +716,7 @@ static av_always_inline int isRGB(enum AVPixelFormat pix_fmt)
( \
isRGBinInt(x) || \
isBGRinInt(x) || \
isRGB(x) || \
(x)==AV_PIX_FMT_GBRP9LE || \
(x)==AV_PIX_FMT_GBRP9BE || \
(x)==AV_PIX_FMT_GBRP10LE || \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment