[FFmpeg-cvslog] vulkan: fix logging level when erroring upon creating shader module

Lynne git at videolan.org
Mon Apr 14 07:15:52 EEST 2025


ffmpeg | branch: master | Lynne <dev at lynne.ee> | Sun Apr 13 03:39:01 2025 +0000| [7b0156201bf4c2543225ec3fb7f64b57f901d1dd] | committer: Lynne

vulkan: fix logging level when erroring upon creating shader module

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b0156201bf4c2543225ec3fb7f64b57f901d1dd
---

 libavutil/vulkan.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
     }



More information about the ffmpeg-cvslog mailing list