summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorSoft Works <softworkz@hotmail.com>2021-08-07 01:31:20 +0000
committerJames Almer <jamrial@gmail.com>2021-08-07 11:24:59 -0300
commit6a4f851df7b627256b35314c59e80dfaf5dbfe23 (patch)
tree9708e89233b5537724299177ec2b7c158cb6e931 /libavformat/mov.c
parent44d5e12c8faa1c170ed9b6b0c9e18c7547572144 (diff)
libavformat/mov: Change log line from debug to trace
It's creating too much noise, even for debug Signed-off-by: softworkz <softworkz@hotmail.com>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
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++;