mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/cscd: Use BGR0 instead of BGRA
the available BGRA samples contain random trash in the alpha channel Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
aec340c533
commit
67fe1a2b61
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue