| Index: source/patched-ffmpeg-mt/libavcodec/nuv.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/nuv.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/nuv.c (working copy)
|
| @@ -112,7 +112,7 @@
|
| if (quality >= 0)
|
| get_quant_quality(c, quality);
|
| if (width != c->width || height != c->height) {
|
| - if (av_check_image_size(height, width, 0, avctx) < 0)
|
| + if (av_image_check_size(height, width, 0, avctx) < 0)
|
| return 0;
|
| avctx->width = c->width = width;
|
| avctx->height = c->height = height;
|
|
|