提交 034b31df 编写于 作者: M Michael Niedermayer

swscale: Fix PAL8 input with alpha

Fixes Ticket2158
Signed-off-by: NMichael Niedermayer <michaelni@gmx.at>
上级 ee979824
......@@ -742,6 +742,8 @@ static av_always_inline int isALPHA(enum AVPixelFormat pix_fmt)
{
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
av_assert0(desc);
if (pix_fmt == AV_PIX_FMT_PAL8)
return 1;
return desc->flags & AV_PIX_FMT_FLAG_ALPHA;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册