]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/pictordec.c
imc: fix undefined float to int conversion
[ffmpeg] / libavcodec / pictordec.c
index f990b1852be53961465df70cc5e8032e939b004e..26c9c005f7bd88b05f484e0595e9e36d4f995fc2 100644 (file)
@@ -24,6 +24,7 @@
  * Pictor/PC Paint decoder
  */
 
+#include "libavcore/imgutils.h"
 #include "avcodec.h"
 #include "bytestream.h"
 #include "cga_data.h"
@@ -135,7 +136,7 @@ static int decode_frame(AVCodecContext *avctx,
     avctx->pix_fmt = PIX_FMT_PAL8;
 
     if (s->width != avctx->width && s->height != avctx->height) {
-        if (avcodec_check_dimensions(avctx, s->width, s->height) < 0)
+        if (av_check_image_size(s->width, s->height, 0, avctx) < 0)
             return -1;
         avcodec_set_dimensions(avctx, s->width, s->height);
         if (s->frame.data[0])