| Index: source/patched-ffmpeg-mt/libavcodec/targa.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/targa.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/targa.c (working copy)
|
| @@ -146,7 +146,7 @@
|
| if(s->picture.data[0])
|
| avctx->release_buffer(avctx, &s->picture);
|
|
|
| - 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)
|
| avcodec_set_dimensions(avctx, w, h);
|
|
|