]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/libutvideoenc.cpp
libkvazaar: Set frame rate as a rational number
[ffmpeg] / libavcodec / libutvideoenc.cpp
index 87462470e211c063b43837eb2cd4e84bbaeb82bd..96d8fe103045042a5e86a94732775039a2878f05 100644 (file)
@@ -27,6 +27,7 @@
 
 extern "C" {
 #include "libavutil/avassert.h"
+#include "libavutil/imgutils.h"
 #include "avcodec.h"
 #include "internal.h"
 }
@@ -94,7 +95,7 @@ static av_cold int utvideo_encode_init(AVCodecContext *avctx)
      * We use this buffer to hold the data that Ut Video returns,
      * since we cannot decode planes separately with it.
      */
-    ret = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
+    ret = av_image_get_buffer_size(avctx->pix_fmt, avctx->width, avctx->height, 1);
     if (ret < 0) {
         av_free(info);
         return ret;