From a714ab0601908131756c3a2074c1fab9a7cddb18 Mon Sep 17 00:00:00 2001 From: Philip Langdale Date: Sat, 16 Nov 2019 17:42:51 -0800 Subject: vo_gpu: hwdec_cuda: Reduce message level of errors while probing We should only be printing errors that occur when not probing, to avoid creating the impression that something is wrong - and errors during probing isn't a problem. --- video/out/hwdec/hwdec_cuda_vk.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'video/out/hwdec/hwdec_cuda_vk.c') diff --git a/video/out/hwdec/hwdec_cuda_vk.c b/video/out/hwdec/hwdec_cuda_vk.c index 70a0accf42..b8eb153ae1 100644 --- a/video/out/hwdec/hwdec_cuda_vk.c +++ b/video/out/hwdec/hwdec_cuda_vk.c @@ -270,6 +270,7 @@ static bool cuda_ext_vk_signal(const struct ra_hwdec_mapper *mapper, int n) bool cuda_vk_init(const struct ra_hwdec *hw) { int ret = 0; + int level = hw->probing ? MSGL_V : MSGL_ERR; struct cuda_hw_priv *p = hw->priv; CudaFunctions *cu = p->cu; @@ -297,7 +298,7 @@ bool cuda_vk_init(const struct ra_hwdec *hw) { } if (!cu->cuImportExternalMemory) { - MP_ERR(hw, "CUDA hwdec with Vulkan requires driver version 410.48 or newer.\n"); + MP_MSG(hw, level, "CUDA hwdec with Vulkan requires driver version 410.48 or newer.\n"); return false; } @@ -325,7 +326,7 @@ bool cuda_vk_init(const struct ra_hwdec *hw) { } if (display_dev == -1) { - MP_ERR(hw, "Could not match Vulkan display device in CUDA.\n"); + MP_MSG(hw, level, "Could not match Vulkan display device in CUDA.\n"); return false; } -- cgit v1.2.3