summaryrefslogtreecommitdiffstats
path: root/libavcodec/vble.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/vble.c')
-rw-r--r--libavcodec/vble.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index 30b77ce..bb9c81c 100644
--- a/libavcodec/vble.c
+++ b/libavcodec/vble.c
@@ -26,6 +26,8 @@
#define BITSTREAM_READER_LE
+#include "libavutil/imgutils.h"
+
#include "avcodec.h"
#include "get_bits.h"
#include "huffyuvdsp.h"
@@ -187,8 +189,8 @@ static av_cold int vble_decode_init(AVCodecContext *avctx)
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
avctx->bits_per_raw_sample = 8;
- ctx->size = avpicture_get_size(avctx->pix_fmt,
- avctx->width, avctx->height);
+ ctx->size = av_image_get_buffer_size(avctx->pix_fmt,
+ avctx->width, avctx->height, 1);
ctx->val = av_malloc_array(ctx->size, sizeof(*ctx->val));
OpenPOWER on IntegriCloud