diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-06-16 01:47:48 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-07-03 20:34:51 +0200 |
commit | ee81e284693da865c1b17989aa42e04c2f73b666 (patch) | |
tree | 69357e8ebc9db738252b03dda8837bbd69bec1c4 | |
parent | 94cfbf02385e00720a8d2261975215ee20254edf (diff) | |
download | ffmpeg-ee81e284693da865c1b17989aa42e04c2f73b666.tar.gz |
avcodec/mpeg12dec: Deduplicate variables
This situation was created in merge commit
71d008ebe4f96974433eecfd3575bc82eb4b06a8.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/mpeg12dec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c index a056dd87cc..cba57369cd 100644 --- a/libavcodec/mpeg12dec.c +++ b/libavcodec/mpeg12dec.c @@ -2095,7 +2095,6 @@ static int mpeg_decode_a53_cc(AVCodecContext *avctx, static void mpeg_decode_user_data(AVCodecContext *avctx, const uint8_t *p, int buf_size) { - Mpeg1Context *s = avctx->priv_data; const uint8_t *buf_end = p + buf_size; Mpeg1Context *s1 = avctx->priv_data; @@ -2111,7 +2110,7 @@ static void mpeg_decode_user_data(AVCodecContext *avctx, int i; for(i=0; i<20; i++) if (!memcmp(p+i, "\0TMPGEXS\0", 9)){ - s->tmpgexs= 1; + s1->tmpgexs = 1; } } /* we parse the DTG active format information */ |