[FFmpeg-devel] [PATCH v2] lavc/vaapi_decode: fix the build failure when hevc_vaapi is disabled
Mark Thompson
sw at jkqxz.net
Mon Apr 13 16:17:49 EEST 2020
On 12/04/2020 16:47, Linjie Fu wrote:
> 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>
> ---
> 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 54a0ecb..5e4f62b 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
>
Applied.
Thanks,
- Mark
More information about the ffmpeg-devel
mailing list