]> git.sesse.net Git - ffmpeg/commitdiff
vaapi: wrap codec specific functions in appropiate #ifs
authorThiago Santos <thiago.sousa.santos@collabora.com>
Sun, 14 Dec 2014 20:59:27 +0000 (22:59 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Sun, 14 Dec 2014 21:04:38 +0000 (22:04 +0100)
Fix linking when only a subset of vaapi decoders is enabled.

Bug-Id: 760
CC: libav-stable@libav.org
Signed-off-by: RĂ©mi Denis-Courmont <remi@remlab.net>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
libavcodec/vaapi.c

index b2dc41d7fe95074f9363e64525708d84efda1e74..fcc6243899ac51271d07984e8179ed8c094947b4 100644 (file)
@@ -194,6 +194,9 @@ void ff_vaapi_common_end_frame(AVCodecContext *avctx)
     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)
 {
     struct vaapi_context * const vactx = avctx->hwaccel_context;
@@ -215,5 +218,6 @@ finish:
     ff_vaapi_common_end_frame(avctx);
     return ret;
 }
+#endif
 
 /* @} */