diff --git a/.pick_status.json b/.pick_status.json index 18d11b17c15..79271b9a5d0 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -4054,7 +4054,7 @@ "description": "meson: bump the minimal required vdpau version to 1.4", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "c3ceec6cd8533a5a5f3ccaf687308dee2f097a99", "notes": null diff --git a/meson.build b/meson.build index 133fd9a8ca3..5c91048a3f1 100644 --- a/meson.build +++ b/meson.build @@ -603,7 +603,7 @@ vdpau = get_option('gallium-vdpau') \ .require(with_platform_x11, error_message : 'VDPAU state tracker requires X11 support.') \ .require(_vdpau_drivers.contains(true), error_message : 'VDPAU state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau, d3d12 (with option gallium-d3d12-video, virgl).') -dep_vdpau = dependency('vdpau', version : '>= 1.1', required : vdpau) +dep_vdpau = dependency('vdpau', version : '>= 1.4', required : vdpau) if dep_vdpau.found() dep_vdpau = dep_vdpau.partial_dependency(compile_args : true) pre_args += '-DHAVE_ST_VDPAU'