avcodec/ituh263dec: Use correct logcontext
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
725563a731
commit
baccb96fce
1 changed files with 2 additions and 1 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue