mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
dv: zero dsp before init, this fixes use of uninitialized dct_bits
Fixes CID732292 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e0909ff158
commit
5e689b65ce
@ -297,6 +297,7 @@ av_cold int ff_dvvideo_init(AVCodecContext *avctx)
|
||||
}
|
||||
|
||||
/* Generic DSP setup */
|
||||
memset(&dsp,0, sizeof(dsp));
|
||||
ff_dsputil_init(&dsp, avctx);
|
||||
ff_set_cmp(&dsp, dsp.ildct_cmp, avctx->ildct_cmp);
|
||||
s->get_pixels = dsp.get_pixels;
|
||||
|
Loading…
Reference in New Issue
Block a user