From f4b30beac0c1a70d6da1e3ffe1e74e9e55397d8e Mon Sep 17 00:00:00 2001 From: Rostislav Pehlivanov <atomnuker@gmail.com> Date: Fri, 18 Mar 2016 11:55:48 +0000 Subject: [PATCH] vc2enc: increase the starting value of the size scaler In some cases this caused the slice size rounding to generate invalid slice sizes and overwrite some slices. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com> --- libavcodec/vc2enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vc2enc.c b/libavcodec/vc2enc.c index 3bc60a30428..f110dfc8385 100644 --- a/libavcodec/vc2enc.c +++ b/libavcodec/vc2enc.c @@ -971,7 +971,7 @@ static av_cold int vc2_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, int64_t max_frame_bytes, r_bitrate = avctx->bit_rate >> (s->interlaced); s->avctx = avctx; - s->size_scaler = 1; + s->size_scaler = 2; s->prefix_bytes = 0; s->last_parse_code = 0; s->next_parse_offset = 0; -- GitLab