Commit 9547e3ee authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'f824535a'

* commit 'f824535a':
  vdpau: deprecate bitstream buffers within the hardware context

Conflicts:
	libavcodec/version.h
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c3b29023 f824535a
...@@ -15,6 +15,10 @@ libavutil: 2012-10-22 ...@@ -15,6 +15,10 @@ libavutil: 2012-10-22
API changes, most recent first: API changes, most recent first:
2013-08-xx - xxxxxxx - lavc 55.13.0 - avcodec.h
Deprecate the bitstream-related members from struct AVVDPAUContext.
The bistream buffers no longer need to be explicitly freed.
2013-08-xx - xxxxxxx - lavc 55.12.0 - avcodec.h 2013-08-xx - xxxxxxx - lavc 55.12.0 - avcodec.h
Deprecate the CODEC_CAP_HWACCEL_VDPAU codec capability. Use CODEC_CAP_HWACCEL Deprecate the CODEC_CAP_HWACCEL_VDPAU codec capability. Use CODEC_CAP_HWACCEL
and select the AV_PIX_FMT_VDPAU format with get_format() instead. and select the AV_PIX_FMT_VDPAU format with get_format() instead.
......
...@@ -57,12 +57,14 @@ ...@@ -57,12 +57,14 @@
#define FF_API_CAP_VDPAU 1 #define FF_API_CAP_VDPAU 1
#endif #endif
#if FF_API_BUFS_VDPAU
union AVVDPAUPictureInfo { union AVVDPAUPictureInfo {
VdpPictureInfoH264 h264; VdpPictureInfoH264 h264;
VdpPictureInfoMPEG1Or2 mpeg; VdpPictureInfoMPEG1Or2 mpeg;
VdpPictureInfoVC1 vc1; VdpPictureInfoVC1 vc1;
VdpPictureInfoMPEG4Part2 mpeg4; VdpPictureInfoMPEG4Part2 mpeg4;
}; };
#endif
/** /**
* This structure is used to share data between the libavcodec library and * This structure is used to share data between the libavcodec library and
...@@ -88,11 +90,13 @@ typedef struct AVVDPAUContext { ...@@ -88,11 +90,13 @@ typedef struct AVVDPAUContext {
*/ */
VdpDecoderRender *render; VdpDecoderRender *render;
#if FF_API_BUFS_VDPAU
/** /**
* VDPAU picture information * VDPAU picture information
* *
* Set by libavcodec. * Set by libavcodec.
*/ */
attribute_deprecated
union AVVDPAUPictureInfo info; union AVVDPAUPictureInfo info;
/** /**
...@@ -100,6 +104,7 @@ typedef struct AVVDPAUContext { ...@@ -100,6 +104,7 @@ typedef struct AVVDPAUContext {
* *
* Set by libavcodec. * Set by libavcodec.
*/ */
attribute_deprecated
int bitstream_buffers_allocated; int bitstream_buffers_allocated;
/** /**
...@@ -107,6 +112,7 @@ typedef struct AVVDPAUContext { ...@@ -107,6 +112,7 @@ typedef struct AVVDPAUContext {
* *
* Set by libavcodec. * Set by libavcodec.
*/ */
attribute_deprecated
int bitstream_buffers_used; int bitstream_buffers_used;
/** /**
...@@ -115,7 +121,9 @@ typedef struct AVVDPAUContext { ...@@ -115,7 +121,9 @@ typedef struct AVVDPAUContext {
* *
* Set by libavcodec. * Set by libavcodec.
*/ */
attribute_deprecated
VdpBitstreamBuffer *bitstream_buffers; VdpBitstreamBuffer *bitstream_buffers;
#endif
} AVVDPAUContext; } AVVDPAUContext;
#if FF_API_CAP_VDPAU #if FF_API_CAP_VDPAU
......
...@@ -35,6 +35,15 @@ static inline uintptr_t ff_vdpau_get_surface_id(Picture *pic) ...@@ -35,6 +35,15 @@ static inline uintptr_t ff_vdpau_get_surface_id(Picture *pic)
return (uintptr_t)pic->f.data[3]; return (uintptr_t)pic->f.data[3];
} }
#if !FF_API_BUFS_VDPAU
union AVVDPAUPictureInfo {
VdpPictureInfoH264 h264;
VdpPictureInfoMPEG1Or2 mpeg;
VdpPictureInfoVC1 vc1;
VdpPictureInfoMPEG4Part2 mpeg4;
};
#endif
struct vdpau_picture_context { struct vdpau_picture_context {
/** /**
* VDPAU picture information. * VDPAU picture information.
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "libavutil/avutil.h" #include "libavutil/avutil.h"
#define LIBAVCODEC_VERSION_MAJOR 55 #define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR 21 #define LIBAVCODEC_VERSION_MINOR 22
#define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
...@@ -94,5 +94,8 @@ ...@@ -94,5 +94,8 @@
#ifndef FF_API_CAP_VDPAU #ifndef FF_API_CAP_VDPAU
#define FF_API_CAP_VDPAU (LIBAVCODEC_VERSION_MAJOR < 56) #define FF_API_CAP_VDPAU (LIBAVCODEC_VERSION_MAJOR < 56)
#endif #endif
#ifndef FF_API_BUFS_VDPAU
#define FF_API_BUFS_VDPAU (LIBAVCODEC_VERSION_MAJOR < 56)
#endif
#endif /* AVCODEC_VERSION_H */ #endif /* AVCODEC_VERSION_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment