[FFmpeg-cvslog] avcodec/huffyuvdec: Don't zero unnecessarily
Andreas Rheinhardt
git at videolan.org
Sun Apr 7 23:17:52 EEST 2024
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Apr 4 05:35:23 2024 +0200| [cebf1d59a56991b775f9bea92d8efd2f810c39ba] | committer: Andreas Rheinhardt
avcodec/huffyuvdec: Don't zero unnecessarily
A decoder's private data has already been zeroed (apart from options)
before init is called.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cebf1d59a56991b775f9bea92d8efd2f810c39ba
---
libavcodec/huffyuvdec.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/libavcodec/huffyuvdec.c b/libavcodec/huffyuvdec.c
index 3bed27be21..29e5419d91 100644
--- a/libavcodec/huffyuvdec.c
+++ b/libavcodec/huffyuvdec.c
@@ -346,7 +346,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
ff_bswapdsp_init(&s->bdsp);
ff_huffyuvdsp_init(&s->hdsp, avctx->pix_fmt);
ff_llviddsp_init(&s->llviddsp);
- memset(s->vlc, 0, 4 * sizeof(VLC));
s->interlaced = avctx->height > 288;
s->bgr32 = 1;
More information about the ffmpeg-cvslog
mailing list