Commit e10b7ef2 authored by Vittorio Giovara's avatar Vittorio Giovara

vdpau: Add missing deprecation guards

parent d40cb726
...@@ -317,6 +317,7 @@ int ff_vdpau_add_buffer(struct vdpau_picture_context *pic_ctx, ...@@ -317,6 +317,7 @@ int ff_vdpau_add_buffer(struct vdpau_picture_context *pic_ctx,
return 0; return 0;
} }
#if FF_API_VDPAU_PROFILE
int av_vdpau_get_profile(AVCodecContext *avctx, VdpDecoderProfile *profile) int av_vdpau_get_profile(AVCodecContext *avctx, VdpDecoderProfile *profile)
{ {
#define PROFILE(prof) \ #define PROFILE(prof) \
...@@ -363,6 +364,7 @@ do { \ ...@@ -363,6 +364,7 @@ do { \
return AVERROR(EINVAL); return AVERROR(EINVAL);
#undef PROFILE #undef PROFILE
} }
#endif /* FF_API_VDPAU_PROFILE */
AVVDPAUContext *av_vdpau_alloc_context(void) AVVDPAUContext *av_vdpau_alloc_context(void)
{ {
......
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