]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/qtrleenc.c
Port pred8x8l_horizontal_down_mmxext (H.264 intra prediction) from x264
[ffmpeg] / libavcodec / qtrleenc.c
index ac8c00c3f18693fbb634f079fbca61c9ae8b0515..aea0f68a6499009a31ee50551cd88c038240f3d0 100644 (file)
@@ -63,7 +63,7 @@ static av_cold int qtrle_encode_init(AVCodecContext *avctx)
 {
     QtrleEncContext *s = avctx->priv_data;
 
-    if (av_check_image_size(avctx->width, avctx->height, 0, avctx) < 0) {
+    if (av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) {
         return -1;
     }
     s->avctx=avctx;