diff options
author | Lynne <dev@lynne.ee> | 2025-04-13 03:39:01 +0000 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2025-04-14 06:10:34 +0200 |
commit | 7b0156201bf4c2543225ec3fb7f64b57f901d1dd (patch) | |
tree | 79d6d6da96375b58a031becd3be14e6cbf7f3c3b /libavutil/vulkan.c | |
parent | 75d5672b4bff50ff47f9ce6835c1c059588dfc44 (diff) | |
download | ffmpeg-7b0156201bf4c2543225ec3fb7f64b57f901d1dd.tar.gz |
vulkan: fix logging level when erroring upon creating shader module
Diffstat (limited to 'libavutil/vulkan.c')
-rw-r--r-- | libavutil/vulkan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c index 7650e83d1d..e789e3f5e0 100644 --- a/libavutil/vulkan.c +++ b/libavutil/vulkan.c @@ -2133,7 +2133,7 @@ static int create_shader_module(FFVulkanContext *s, FFVulkanShader *shd, ret = vk->CreateShaderModule(s->hwctx->act_dev, &shader_module_info, s->hwctx->alloc, mod); if (ret != VK_SUCCESS) { - av_log(s, AV_LOG_VERBOSE, "Error creating shader module: %s\n", + av_log(s, AV_LOG_ERROR, "Error creating shader module: %s\n", ff_vk_ret2str(ret)); return AVERROR_EXTERNAL; } |