Commit 3ef10406 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

vc2enc: correctly zero out coefficient array padding

Credit for figuring this out goes to James Darnley.
Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
parent 35346c7b
......@@ -867,7 +867,7 @@ static int dwt_plane(AVCodecContext *avctx, void *arg)
}
}
memset(buf, 0, (p->coef_stride*p->dwt_height - p->height*p->width)*sizeof(dwtcoef));
memset(buf, 0, p->coef_stride * (p->dwt_height - p->height) * sizeof(dwtcoef));
for (level = s->wavelet_depth-1; level >= 0; level--) {
const SubBand *b = &p->band[level][0];
......
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