From: Anton Khirnov Date: Sat, 2 Nov 2013 21:01:14 +0000 (+0100) Subject: vdpau: add a constructor for AVVDPAUContext. X-Git-Tag: android-x86-6.0-r1~10^2~2815 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=728c4658563dc82115ade0f1679679eddb7be5ff;p=android-x86%2Fexternal-ffmpeg.git vdpau: add a constructor for AVVDPAUContext. We will likely want to add new fields to it in the future, so this is needed to avoid breaking ABI. --- diff --git a/doc/APIchanges b/doc/APIchanges index e00a241aa5..e791443386 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -15,6 +15,8 @@ API changes, most recent first: 2013-11-xx - xxxxxxx - lavc 55.26.0 - vdpau.h Add av_vdpau_get_profile(). + Add av_vdpau_alloc_context(). This function must from now on be + used for allocating AVVDPAUContext. 2013-11-xx - xxxxxxx - lavc 55.25.0 - avcodec.h Add ITU-R BT.2020 and other not yet included values to color primaries, diff --git a/libavcodec/vdpau.c b/libavcodec/vdpau.c index cc0bcffc5f..d8a35eeb3b 100644 --- a/libavcodec/vdpau.c +++ b/libavcodec/vdpau.c @@ -133,4 +133,9 @@ do { \ return AVERROR(EINVAL); } +AVVDPAUContext *av_vdpau_alloc_context(void) +{ + return av_mallocz(sizeof(AVVDPAUContext)); +} + /* @}*/ diff --git a/libavcodec/vdpau.h b/libavcodec/vdpau.h index bf8c8e8b2c..75cb1bf7a3 100644 --- a/libavcodec/vdpau.h +++ b/libavcodec/vdpau.h @@ -74,6 +74,10 @@ union AVVDPAUPictureInfo { * during initialization or through each AVCodecContext.get_buffer() * function call. In any case, they must be valid prior to calling * decoding functions. + * + * The size of this structure is not a part of the public ABI and must not + * be used outside of libavcodec. Use av_vdpau_alloc_context() to allocate an + * AVVDPAUContext. */ typedef struct AVVDPAUContext { /** @@ -127,6 +131,13 @@ typedef struct AVVDPAUContext { } AVVDPAUContext; /** + * Allocate an AVVDPAUContext. + * + * @return Newly-allocated AVVDPAUContext or NULL on failure. + */ +AVVDPAUContext *av_vdpau_alloc_context(void); + +/** * Get a decoder profile that should be used for initializing a VDPAU decoder. * Should be called from the AVCodecContext.get_format() callback. *