avcodec/ffv1enc: fix bps for >8bit yuv when not explicitly set
Fixes Ticket4636 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 3a6a8f6ee1cb619913b87b6c78e0436303e2a35f) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9473e5a05d
commit
08fadda68a
@ -753,7 +753,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
|
||||
s->chroma_planes = desc->nb_components < 3 ? 0 : 1;
|
||||
s->colorspace = 0;
|
||||
s->transparency = desc->nb_components == 4;
|
||||
if (!avctx->bits_per_raw_sample)
|
||||
if (!avctx->bits_per_raw_sample && !s->bits_per_raw_sample)
|
||||
s->bits_per_raw_sample = 8;
|
||||
break;
|
||||
case AV_PIX_FMT_RGB32:
|
||||
|
Loading…
x
Reference in New Issue
Block a user