| Index: source/patched-ffmpeg-mt/libavcodec/libvpxdec.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/libvpxdec.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/libvpxdec.c (working copy)
|
| @@ -87,7 +87,7 @@
|
| if ((int) img->d_w != avctx->width || (int) img->d_h != avctx->height) {
|
| av_log(avctx, AV_LOG_INFO, "dimension change! %dx%d -> %dx%d\n",
|
| avctx->width, avctx->height, img->d_w, img->d_h);
|
| - if (av_check_image_size(img->d_w, img->d_h, 0, avctx))
|
| + if (av_image_check_size(img->d_w, img->d_h, 0, avctx))
|
| return AVERROR_INVALIDDATA;
|
| avcodec_set_dimensions(avctx, img->d_w, img->d_h);
|
| }
|
|
|