From 798ab1d03e8df06f2c7dd9a01bb303f368df5de4 Mon Sep 17 00:00:00 2001 From: Linjie Fu Date: Sun, 12 Apr 2020 23:47:00 +0800 Subject: [PATCH] lavc/vaapi_decode: fix the build failure when hevc_vaapi is disabled Verified with ./configure --enable-vaapi --disable-hwaccel=hevc_vaapi Failure reported in: http://fate.ffmpeg.org/report.cgi?time=20200401135031&slot=x86_64-archlinux-gcc-random Signed-off-by: Linjie Fu --- libavcodec/vaapi_decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vaapi_decode.c b/libavcodec/vaapi_decode.c index 54a0ecb47af..5e4f62baad0 100644 --- a/libavcodec/vaapi_decode.c +++ b/libavcodec/vaapi_decode.c @@ -389,7 +389,7 @@ static const struct { MAP(HEVC, HEVC_MAIN_STILL_PICTURE, HEVCMain ), #endif -#if VA_CHECK_VERSION(1, 2, 0) +#if VA_CHECK_VERSION(1, 2, 0) && CONFIG_HEVC_VAAPI_HWACCEL MAP(HEVC, HEVC_REXT, None, ff_vaapi_parse_hevc_rext_profile ), #endif -- 2.39.5