You've already forked FFmpeg
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:
@ -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)) {
|
||||||
|
Reference in New Issue
Block a user