| Index: source/patched-ffmpeg-mt/libavcodec/eamad.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/eamad.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/eamad.c (working copy)
|
| @@ -261,7 +261,7 @@
|
| buf += 16;
|
|
|
| if (avctx->width != s->width || avctx->height != s->height) {
|
| - if (av_check_image_size(s->width, s->height, 0, avctx) < 0)
|
| + if (av_image_check_size(s->width, s->height, 0, avctx) < 0)
|
| return -1;
|
| avcodec_set_dimensions(avctx, s->width, s->height);
|
| if (t->frame.data[0])
|
|
|