Chromium Code Reviews| Index: source/patched-ffmpeg-mt/libavcodec/kgv1dec.c |
| =================================================================== |
| --- source/patched-ffmpeg-mt/libavcodec/kgv1dec.c (revision 59334) |
| +++ source/patched-ffmpeg-mt/libavcodec/kgv1dec.c (working copy) |
| @@ -51,7 +51,7 @@ |
| h = (buf[1] + 1) * 8; |
| buf += 2; |
| - if (av_check_image_size(w, h, 0, avctx)) |
| + if (av_image_check_size(w, h, 0, avctx)) |
| return -1; |
| if (w != avctx->width || h != avctx->height) |