Commit e9a6152e authored by Michael Niedermayer's avatar Michael Niedermayer

lavc: fix FF_LOSS_COLORQUANT detection for gray8a->pal8

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b4ec645f
...@@ -456,8 +456,9 @@ int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt, enum PixelFormat src_ ...@@ -456,8 +456,9 @@ int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt, enum PixelFormat src_
if (!pf->is_alpha && (ps->is_alpha && has_alpha)) if (!pf->is_alpha && (ps->is_alpha && has_alpha))
loss |= FF_LOSS_ALPHA; loss |= FF_LOSS_ALPHA;
if (dst_pix_fmt == PIX_FMT_PAL8 && if (dst_pix_fmt == PIX_FMT_PAL8 &&
(src_pix_fmt != PIX_FMT_PAL8 && ps->color_type != FF_COLOR_GRAY)) (src_pix_fmt != PIX_FMT_PAL8 && (ps->color_type != FF_COLOR_GRAY || (ps->is_alpha && has_alpha))))
loss |= FF_LOSS_COLORQUANT; loss |= FF_LOSS_COLORQUANT;
return loss; return loss;
} }
......
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