From 594d4d5df3c70404168701dd5c90b7e6e5587793 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 10 Nov 2012 13:22:56 +0100 Subject: lavc: add a wrapper for AVCodecContext.get_buffer(). It will be useful in the upcoming transition to refcounted AVFrames. --- libavcodec/cavsdec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/cavsdec.c') diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index 3c7f79bafb..5619071a10 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -29,6 +29,7 @@ #include "get_bits.h" #include "golomb.h" #include "cavs.h" +#include "internal.h" static const uint8_t mv_scan[4] = { MV_FWD_X0,MV_FWD_X1, @@ -950,7 +951,7 @@ static int decode_pic(AVSContext *h) { if(h->picture.f.data[0]) s->avctx->release_buffer(s->avctx, &h->picture.f); - s->avctx->get_buffer(s->avctx, &h->picture.f); + ff_get_buffer(s->avctx, &h->picture.f); ff_cavs_init_pic(h); h->picture.poc = get_bits(&s->gb,8)*2; -- cgit v1.2.3