aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/intelh263dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2025-05-21 02:21:45 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2025-05-26 05:03:29 +0200
commitac1e6d21718edee6c54e3f6fb409d6d09921423c (patch)
tree35f1c48b5133b5e9689c17d0db6eb96b745cc63f /libavcodec/intelh263dec.c
parentda5c2a419b6da76fcb7b94b088d59e918e7e74fb (diff)
downloadffmpeg-ac1e6d21718edee6c54e3f6fb409d6d09921423c.tar.gz
avcodec/mpegvideo: Remove h263_plus
It is only used to indicate to ff_h263_show_pict_info() that we are decoding H.263+; pass this information via a function parameter instead. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/intelh263dec.c')
-rw-r--r--libavcodec/intelh263dec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/intelh263dec.c b/libavcodec/intelh263dec.c
index b2e7fa6c54..02016e93bf 100644
--- a/libavcodec/intelh263dec.c
+++ b/libavcodec/intelh263dec.c
@@ -57,7 +57,6 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s)
av_log(s->avctx, AV_LOG_ERROR, "Intel H.263 free format not supported\n");
return -1;
}
- s->h263_plus = 0;
s->pict_type = AV_PICTURE_TYPE_I + get_bits1(&s->gb);
@@ -122,7 +121,7 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s)
s->gob_index = H263_GOB_HEIGHT(s->height);
- ff_h263_show_pict_info(s);
+ ff_h263_show_pict_info(s, 0);
return 0;
}