diff mbox series

[FFmpeg-devel] libavformat/mov: Change log line from debug to trace

Message ID BYAPR04MB5976B567C1D85639AC5744E5BAF49@BYAPR04MB5976.namprd04.prod.outlook.com
State Accepted
Commit 6a4f851df7b627256b35314c59e80dfaf5dbfe23
Headers show
Series [FFmpeg-devel] libavformat/mov: Change log line from debug to trace | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Soft Works Aug. 7, 2021, 1:31 a.m. UTC
It's creating too much noise, even for debug

Signed-off-by: softworkz <softworkz@hotmail.com>
---
 libavformat/mov.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavformat/mov.c b/libavformat/mov.c
index e95d3d2a90..46bc7b5aa3 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3611,7 +3611,7 @@  static void mov_fix_index(MOVContext *mov, AVStream *st)
 
             if (ctts_data_old && ctts_index_old < ctts_count_old) {
                 curr_ctts = ctts_data_old[ctts_index_old].duration;
-                av_log(mov->fc, AV_LOG_DEBUG, "stts: %"PRId64" ctts: %"PRId64", ctts_index: %"PRId64", ctts_count: %"PRId64"\n",
+                av_log(mov->fc, AV_LOG_TRACE, "stts: %"PRId64" ctts: %"PRId64", ctts_index: %"PRId64", ctts_count: %"PRId64"\n",
                        curr_cts, curr_ctts, ctts_index_old, ctts_count_old);
                 curr_cts += curr_ctts;
                 ctts_sample_old++;