[FFmpeg-cvslog] lavc/vaapi_decode: fix the build failure when hevc_vaapi is disabled
Linjie Fu
git at videolan.org
Mon Apr 13 16:17:23 EEST 2020
ffmpeg | branch: master | Linjie Fu <linjie.fu at intel.com> | Sun Apr 12 23:47:00 2020 +0800| [798ab1d03e8df06f2c7dd9a01bb303f368df5de4] | committer: Mark Thompson
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 <linjie.fu at intel.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=798ab1d03e8df06f2c7dd9a01bb303f368df5de4
---
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 54a0ecb47a..5e4f62baad 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
More information about the ffmpeg-cvslog
mailing list