aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vc1dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-04-28 23:18:35 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-12 12:03:00 +0200
commitb2ac792367382bcc90fa39290161c937f934b01a (patch)
tree8b4f6fcbfbec1a3f600840f1ffdf2119702f1e46 /libavcodec/vc1dec.c
parent2f6768c761ebdd50e6c6fc5ade0ed19fd647842f (diff)
downloadffmpeg-b2ac792367382bcc90fa39290161c937f934b01a.tar.gz
avcodec/mpegvideo: Use enum for msmpeg4_version
Improves readability. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r--libavcodec/vc1dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c
index 17da7ed7cd..4b31860c3f 100644
--- a/libavcodec/vc1dec.c
+++ b/libavcodec/vc1dec.c
@@ -610,7 +610,7 @@ av_cold void ff_vc1_init_common(VC1Context *v)
s->out_format = FMT_H263;
s->h263_pred = 1;
- s->msmpeg4_version = 6;
+ s->msmpeg4_version = MSMP4_VC1;
ff_vc1dsp_init(&v->vc1dsp);