You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +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:
@@ -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))
|
||||
|
Reference in New Issue
Block a user