diff mbox series

[FFmpeg-devel,1/2] avcodec/libdav1d: print libdav1d version in verbose level

Message ID 20240204140720.3477-1-jamrial@gmail.com
State Accepted
Commit 48f4a29bae461cc9a1304d52e7f37c6b9ad32643
Headers show
Series [FFmpeg-devel,1/2] avcodec/libdav1d: print libdav1d version in verbose level | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

James Almer Feb. 4, 2024, 2:07 p.m. UTC
info level will be too noisy if several instances of the decoder are fired
at the same time, as will be the case with tiled AVIF.

Signed-off-by: James Almer <jamrial@gmail.com>
---
 libavcodec/libdav1d.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c
index 11cdbca274..78a5c63bf4 100644
--- a/libavcodec/libdav1d.c
+++ b/libavcodec/libdav1d.c
@@ -215,7 +215,7 @@  static av_cold int libdav1d_init(AVCodecContext *c)
 #endif
     int res;
 
-    av_log(c, AV_LOG_INFO, "libdav1d %s\n", dav1d_version());
+    av_log(c, AV_LOG_VERBOSE, "libdav1d %s\n", dav1d_version());
 
     dav1d_default_settings(&s);
     s.logger.cookie = c;