aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-07 19:15:29 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-07 19:15:29 +0000
commite16f217ceb95395669abe3cea18737e92fb78c82 (patch)
tree8e55022c675d84e0cf39ebb7047396992dd93e7d /libavcodec/mpegvideo.c
parent9b7269e379289e240404c803acac25c607bb0e26 (diff)
downloadandroid_external_ffmpeg-e16f217ceb95395669abe3cea18737e92fb78c82.tar.gz
android_external_ffmpeg-e16f217ceb95395669abe3cea18737e92fb78c82.tar.bz2
android_external_ffmpeg-e16f217ceb95395669abe3cea18737e92fb78c82.zip
Use new imgutils.h API names, fix deprecation warnings.
Originally committed as revision 25058 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 42496ec97f..f4e80bafe1 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -511,7 +511,7 @@ av_cold int MPV_common_init(MpegEncContext *s)
return -1;
}
- if((s->width || s->height) && av_check_image_size(s->width, s->height, 0, s->avctx))
+ if((s->width || s->height) && av_image_check_size(s->width, s->height, 0, s->avctx))
return -1;
dsputil_init(&s->dsp, s->avctx);