Commit bab8d737 authored by Thiago Santos's avatar Thiago Santos Committed by Luca Barbato

vaapi: wrap codec specific functions in appropiate #ifs

Fix linking when only a subset of vaapi decoders is enabled.

Bug-Id: 760
CC: libav-stable@libav.org
Signed-off-by: 's avatarRémi Denis-Courmont <remi@remlab.net>
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent 5a82ad64
...@@ -194,6 +194,9 @@ void ff_vaapi_common_end_frame(AVCodecContext *avctx) ...@@ -194,6 +194,9 @@ void ff_vaapi_common_end_frame(AVCodecContext *avctx)
vactx->slice_params_alloc = 0; vactx->slice_params_alloc = 0;
} }
#if CONFIG_H263_VAAPI_HWACCEL || CONFIG_MPEG1_VAAPI_HWACCEL || \
CONFIG_MPEG2_VAAPI_HWACCEL || CONFIG_MPEG4_VAAPI_HWACCEL || \
CONFIG_VC1_VAAPI_HWACCEL || CONFIG_WMV3_VAAPI_HWACCEL
int ff_vaapi_mpeg_end_frame(AVCodecContext *avctx) int ff_vaapi_mpeg_end_frame(AVCodecContext *avctx)
{ {
struct vaapi_context * const vactx = avctx->hwaccel_context; struct vaapi_context * const vactx = avctx->hwaccel_context;
...@@ -215,5 +218,6 @@ finish: ...@@ -215,5 +218,6 @@ finish:
ff_vaapi_common_end_frame(avctx); ff_vaapi_common_end_frame(avctx);
return ret; return ret;
} }
#endif
/* @} */ /* @} */
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