From 89b0a9f3fa9d6f32d99d03473ab1cb2110a7c9dd Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 5 Sep 2015 16:45:26 -0300 Subject: [PATCH] avcodec/vdpau: remove incompatible-libav-abi hack from vdpau_render_state struct --- libavcodec/vdpau.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libavcodec/vdpau.h b/libavcodec/vdpau.h index a42ca013f2..17cc2631b3 100644 --- a/libavcodec/vdpau.h +++ b/libavcodec/vdpau.h @@ -231,10 +231,8 @@ struct vdpau_render_state { int state; ///< Holds FF_VDPAU_STATE_* values. -#if AV_HAVE_INCOMPATIBLE_LIBAV_ABI /** picture parameter information for all supported codecs */ union AVVDPAUPictureInfo info; -#endif /** Describe size/location of the compressed video data. Set to 0 when freeing bitstream_buffers. */ @@ -242,11 +240,6 @@ struct vdpau_render_state { int bitstream_buffers_used; /** The user is responsible for freeing this buffer using av_freep(). */ VdpBitstreamBuffer *bitstream_buffers; - -#if !AV_HAVE_INCOMPATIBLE_LIBAV_ABI - /** picture parameter information for all supported codecs */ - union AVVDPAUPictureInfo info; -#endif }; #endif