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/internal.h | |
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/internal.h')
-rw-r--r-- | libavcodec/internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 0f624e201f..9dde654528 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -141,4 +141,11 @@ static av_always_inline int64_t ff_samples_to_time_base(AVCodecContext *avctx, avctx->time_base); } +/** + * Get a buffer for a frame. This is a wrapper around + * AVCodecContext.get_buffer() and should be used instead calling get_buffer() + * directly. + */ +int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame); + #endif /* AVCODEC_INTERNAL_H */ |