Commit 2fd14f06 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/snowenc: allow larger mb variances

Fixes assertion failure
Fixes Ticket3463
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b4356c9c
......@@ -1502,8 +1502,8 @@ static int ratecontrol_1pass(SnowContext *s, AVFrame *pict)
}
/* ugly, ratecontrol just takes a sqrt again */
coef_sum = (uint64_t)coef_sum * coef_sum >> 16;
av_assert0(coef_sum < INT_MAX);
coef_sum = (uint64_t)coef_sum * coef_sum >> 16;
if(pict->pict_type == AV_PICTURE_TYPE_I){
s->m.current_picture.mb_var_sum= coef_sum;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment