diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-08 18:53:16 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-12 18:29:10 +0200 |
commit | c9b146756a2dde0291cd2f36883945d5031d5f50 (patch) | |
tree | 59443f19e13eee66cb31c53c7141c86350f857c6 /libavcodec/mss2.c | |
parent | c769050f56a8322091775af1f672803d8a42c775 (diff) | |
download | ffmpeg-c9b146756a2dde0291cd2f36883945d5031d5f50.tar.gz |
avcodec/mss2: Remove redundant initialization of vc1 dsp
ff_vc1_init_common() already does it.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mss2.c')
-rw-r--r-- | libavcodec/mss2.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mss2.c b/libavcodec/mss2.c index 3e3205ae92..a27fae7559 100644 --- a/libavcodec/mss2.c +++ b/libavcodec/mss2.c @@ -752,7 +752,6 @@ static av_cold int wmv9_init(AVCodecContext *avctx) v->s.avctx = avctx; ff_vc1_init_common(v); - ff_vc1dsp_init(&v->vc1dsp); v->profile = PROFILE_MAIN; |