[FFmpeg-cvslog] avcodec/ituh263dec: Use correct logcontext

Andreas Rheinhardt git at videolan.org
Thu Jul 3 21:55:05 EEST 2025


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Jun 19 18:51:39 2025 +0200| [baccb96fce6b5c3f22fc05ea20c46a0cd096d657] | committer: Andreas Rheinhardt

avcodec/ituh263dec: Use correct logcontext

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=baccb96fce6b5c3f22fc05ea20c46a0cd096d657
---

 libavcodec/ituh263dec.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c
index f1f96010b2..95cd8f0b13 100644
--- a/libavcodec/ituh263dec.c
+++ b/libavcodec/ituh263dec.c
@@ -1295,7 +1295,8 @@ int ff_h263_decode_picture_header(MpegEncContext *s)
         s->qscale = get_bits(&s->gb, 5);
     }
 
-    if ((ret = av_image_check_size(s->width, s->height, 0, s)) < 0)
+    ret = av_image_check_size(s->width, s->height, 0, s->avctx);
+    if (ret < 0)
         return ret;
 
     if (!(s->avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) {



More information about the ffmpeg-cvslog mailing list