diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-10 13:22:56 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-04 21:41:59 +0100 |
commit | 594d4d5df3c70404168701dd5c90b7e6e5587793 (patch) | |
tree | bfed1b2d0f2a7cd1a3c1b147c5e33995642c9183 /libavcodec/cavsdec.c | |
parent | cb45553f577f8e0ebfe05d3287e1b6fa5859b967 (diff) | |
download | ffmpeg-594d4d5df3c70404168701dd5c90b7e6e5587793.tar.gz |
lavc: add a wrapper for AVCodecContext.get_buffer().
It will be useful in the upcoming transition to refcounted AVFrames.
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |