From 816cf5181e35ebb595634762a45c7c94cd7b6760 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 10 Sep 2015 14:03:01 +0200 Subject: swscale/utils: If the source has no alpha then disable alpha blendaway Signed-off-by: Michael Niedermayer --- libswscale/utils.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libswscale/utils.c') diff --git a/libswscale/utils.c b/libswscale/utils.c index 354ec055f2..777f85e46b 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1144,6 +1144,10 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, desc_src = av_pix_fmt_desc_get(srcFormat); desc_dst = av_pix_fmt_desc_get(dstFormat); + // If the source has no alpha then disable alpha blendaway + if (c->src0Alpha) + c->alphablend = SWS_ALPHA_BLEND_NONE; + if (!(unscaled && sws_isSupportedEndiannessConversion(srcFormat) && av_pix_fmt_swap_endianness(srcFormat) == dstFormat)) { if (!sws_isSupportedInput(srcFormat)) { -- cgit v1.2.3