| Index: source/patched-ffmpeg-mt/libavcodec/xsubdec.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/xsubdec.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/xsubdec.c (working copy)
|
| @@ -77,7 +77,7 @@
|
| // read header
|
| w = bytestream_get_le16(&buf);
|
| h = bytestream_get_le16(&buf);
|
| - if (av_check_image_size(w, h, 0, avctx) < 0)
|
| + if (av_image_check_size(w, h, 0, avctx) < 0)
|
| return -1;
|
| x = bytestream_get_le16(&buf);
|
| y = bytestream_get_le16(&buf);
|
|
|