From 67fe1a2b61a6d6723b3523c2bf698c6f48e8443a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 10 Sep 2015 16:19:15 +0200 Subject: avcodec/cscd: Use BGR0 instead of BGRA the available BGRA samples contain random trash in the alpha channel Signed-off-by: Michael Niedermayer --- libavcodec/cscd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/cscd.c b/libavcodec/cscd.c index 278093fdb3..9e1dec9d96 100644 --- a/libavcodec/cscd.c +++ b/libavcodec/cscd.c @@ -127,7 +127,7 @@ static av_cold int decode_init(AVCodecContext *avctx) { switch (avctx->bits_per_coded_sample) { case 16: avctx->pix_fmt = AV_PIX_FMT_RGB555LE; break; case 24: avctx->pix_fmt = AV_PIX_FMT_BGR24; break; - case 32: avctx->pix_fmt = AV_PIX_FMT_BGRA; break; + case 32: avctx->pix_fmt = AV_PIX_FMT_BGR0; break; default: av_log(avctx, AV_LOG_ERROR, "CamStudio codec error: invalid depth %i bpp\n", -- cgit v1.2.3