| Index: source/patched-ffmpeg-mt/libavcodec/rv10.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/rv10.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/rv10.c (working copy)
|
| @@ -370,7 +370,7 @@
|
| }
|
| if(new_w != s->width || new_h != s->height){
|
| av_log(s->avctx, AV_LOG_DEBUG, "attempting to change resolution to %dx%d\n", new_w, new_h);
|
| - if (av_check_image_size(new_w, new_h, 0, s->avctx) < 0)
|
| + if (av_image_check_size(new_w, new_h, 0, s->avctx) < 0)
|
| return -1;
|
| MPV_common_end(s);
|
| avcodec_set_dimensions(s->avctx, new_w, new_h);
|
|
|