mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-08 16:54:03 +02:00
imgutils: Fix a typo in avcodec_get_pix_fmt_loss
If the candidate does not have alpha and the source does have alpha report the loss of alpha. CC: libav-stable@libav.org
This commit is contained in:
parent
d8ebb6157d
commit
47b447aaff
@ -78,7 +78,7 @@ int avcodec_get_pix_fmt_loss(enum AVPixelFormat dst_pix_fmt,
|
||||
loss |= FF_LOSS_COLORSPACE;
|
||||
|
||||
if (has_alpha && !(dst_desc->flags & AV_PIX_FMT_FLAG_ALPHA) &&
|
||||
(dst_desc->flags & AV_PIX_FMT_FLAG_ALPHA))
|
||||
(src_desc->flags & AV_PIX_FMT_FLAG_ALPHA))
|
||||
loss |= FF_LOSS_ALPHA;
|
||||
|
||||
if (dst_pix_fmt == AV_PIX_FMT_PAL8 && !is_gray(src_desc))
|
||||
|
Loading…
x
Reference in New Issue
Block a user