mirror of https://git.ffmpeg.org/ffmpeg.git
vc2enc: correctly zero out coefficient array padding
Credit for figuring this out goes to James Darnley. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
parent
35346c7b0f
commit
3ef10406e1
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue