summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-02-04 11:06:51 -0300
committerJames Almer <jamrial@gmail.com>2024-02-06 10:34:50 -0300
commit48f4a29bae461cc9a1304d52e7f37c6b9ad32643 (patch)
tree150dc5700b8fb29f38b66bc148794db90e0e20c7
parenta42f884cd2fafb7aa53bf7b56c20355cd61ca1f5 (diff)
avcodec/libdav1d: print libdav1d version in verbose level
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>
-rw-r--r--libavcodec/libdav1d.c2
1 files changed, 1 insertions, 1 deletions
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;