Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2015-09-05 22:45:26 +0300
committerJames Almer <jamrial@gmail.com>2015-09-05 22:45:26 +0300
commit89b0a9f3fa9d6f32d99d03473ab1cb2110a7c9dd (patch)
treea9aef16a0b6a81b60b5d931d566410518af1b2cc /libavcodec/vdpau.h
parent160e92c8bfad9b6b4748b0d5f72f15a097ad2dc3 (diff)
avcodec/vdpau: remove incompatible-libav-abi hack from vdpau_render_state struct
Diffstat (limited to 'libavcodec/vdpau.h')
-rw-r--r--libavcodec/vdpau.h7
1 files changed, 0 insertions, 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