This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 15e1e61888805f128894be199b257e8ab6cb686b Author: Andreas Rheinhardt <[email protected]> AuthorDate: Wed Jun 25 04:45:57 2025 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Jan 2 18:30:43 2026 +0100 avcodec/wmv2: Don't initialize BlockDSPContext redundantly ff_mpv_common_init() already does it for us. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/wmv2.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/wmv2.c b/libavcodec/wmv2.c index c2bcb988c4..903c1c9a44 100644 --- a/libavcodec/wmv2.c +++ b/libavcodec/wmv2.c @@ -29,7 +29,6 @@ av_cold void ff_wmv2_common_init(MpegEncContext *s) { WMV2Context *const w = s->private_ctx; - ff_blockdsp_init(&s->bdsp); ff_wmv2dsp_init(&w->wdsp); s->idsp.perm_type = w->wdsp.idct_perm; ff_init_scantable_permutation(s->idsp.idct_permutation, _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
