mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
Correct order of arguments for avcodec_check_dimensions().
Originally committed as revision 20590 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4687f908c6
commit
e026902a62
@ -367,7 +367,7 @@ static int rv20_decode_picture_header(MpegEncContext *s)
|
||||
}
|
||||
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 (avcodec_check_dimensions(s->avctx, new_h, new_w) < 0)
|
||||
if (avcodec_check_dimensions(s->avctx, new_w, new_h) < 0)
|
||||
return -1;
|
||||
MPV_common_end(s);
|
||||
avcodec_set_dimensions(s->avctx, new_w, new_h);
|
||||
|
Loading…
Reference in New Issue
Block a user