mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffv1dec: use PIX_FMT_0RGB32 when there is no transparency plane
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2027d073ae
commit
4b03d96022
@ -1609,7 +1609,8 @@ static int read_header(FFV1Context *f){
|
|||||||
av_log(f->avctx, AV_LOG_ERROR, "chroma subsampling not supported in this colorspace\n");
|
av_log(f->avctx, AV_LOG_ERROR, "chroma subsampling not supported in this colorspace\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
f->avctx->pix_fmt= PIX_FMT_RGB32;
|
if(f->transparency) f->avctx->pix_fmt= PIX_FMT_RGB32;
|
||||||
|
else f->avctx->pix_fmt= PIX_FMT_0RGB32;
|
||||||
}else{
|
}else{
|
||||||
av_log(f->avctx, AV_LOG_ERROR, "colorspace not supported\n");
|
av_log(f->avctx, AV_LOG_ERROR, "colorspace not supported\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user