ffmpeg | branch: release/2.7 | Michael Niedermayer <[email protected]> | Thu Jun 18 00:34:59 2015 +0200| [08fadda68aebdc0b28c6e2816b77875ee50d6faf] | committer: Michael Niedermayer
avcodec/ffv1enc: fix bps for >8bit yuv when not explicitly set Fixes Ticket4636 Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 3a6a8f6ee1cb619913b87b6c78e0436303e2a35f) Signed-off-by: Michael Niedermayer <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=08fadda68aebdc0b28c6e2816b77875ee50d6faf --- libavcodec/ffv1enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index af727a5..45ab3a3 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -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: _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
