diff options
author | James Almer <jamrial@gmail.com> | 2017-10-21 23:48:29 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-21 23:48:29 -0300 |
commit | 17487f11bb68b1d43a5d1048749cef7f627bacdb (patch) | |
tree | 97c6dc7a2d23ba6d65876b92ae8c7919c5df51f7 /libavcodec/vdpau.h | |
parent | c68a3ab96ec0497ae2d627ddd30c61737d18173e (diff) | |
parent | 5c1585c4c3b5281835d784c5daef0069915ccd57 (diff) | |
download | ffmpeg-17487f11bb68b1d43a5d1048749cef7f627bacdb.tar.gz |
Merge commit '5c1585c4c3b5281835d784c5daef0069915ccd57'
* commit '5c1585c4c3b5281835d784c5daef0069915ccd57':
lavc: Drop deprecated VDPAU buffer fields
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/vdpau.h')
-rw-r--r-- | libavcodec/vdpau.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/libavcodec/vdpau.h b/libavcodec/vdpau.h index 458e4fa605..4d99943369 100644 --- a/libavcodec/vdpau.h +++ b/libavcodec/vdpau.h @@ -57,15 +57,6 @@ #include "avcodec.h" #include "version.h" -#if FF_API_BUFS_VDPAU -union AVVDPAUPictureInfo { - VdpPictureInfoH264 h264; - VdpPictureInfoMPEG1Or2 mpeg; - VdpPictureInfoVC1 vc1; - VdpPictureInfoMPEG4Part2 mpeg4; -}; -#endif - struct AVCodecContext; struct AVFrame; @@ -102,40 +93,6 @@ typedef struct AVVDPAUContext { */ VdpDecoderRender *render; -#if FF_API_BUFS_VDPAU - /** - * VDPAU picture information - * - * Set by libavcodec. - */ - attribute_deprecated - union AVVDPAUPictureInfo info; - - /** - * Allocated size of the bitstream_buffers table. - * - * Set by libavcodec. - */ - attribute_deprecated - int bitstream_buffers_allocated; - - /** - * Useful bitstream buffers in the bitstream buffers table. - * - * Set by libavcodec. - */ - attribute_deprecated - int bitstream_buffers_used; - - /** - * Table of bitstream buffers. - * The user is responsible for freeing this buffer using av_freep(). - * - * Set by libavcodec. - */ - attribute_deprecated - VdpBitstreamBuffer *bitstream_buffers; -#endif AVVDPAU_Render2 render2; } AVVDPAUContext; |