1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/ituh263dec: Use correct logcontext

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-06-19 18:51:39 +02:00
parent 725563a731
commit baccb96fce

View File

@ -1295,7 +1295,8 @@ int ff_h263_decode_picture_header(MpegEncContext *s)
s->qscale = get_bits(&s->gb, 5); 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; return ret;
if (!(s->avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) { if (!(s->avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) {