diff options
author | James Almer <jamrial@gmail.com> | 2022-03-28 15:01:54 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-04-05 09:19:58 -0300 |
commit | b4373bc4226426e4c2498e0c914520806764776e (patch) | |
tree | 98398ea994690c0c07f31aae51070968e7612363 | |
parent | 603f2245d4d0ee40d4c7e2192648127999fb0fbd (diff) | |
download | ffmpeg-b4373bc4226426e4c2498e0c914520806764776e.tar.gz |
avformat/mov_chan: use a higher log level for a debug message
Trace is too noisy and this line is useful enough to get it printed
at debug level.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavformat/mov_chan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov_chan.c b/libavformat/mov_chan.c index 98773bb460..3c23142f35 100644 --- a/libavformat/mov_chan.c +++ b/libavformat/mov_chan.c @@ -574,7 +574,7 @@ int ff_mov_read_chan(AVFormatContext *s, AVIOContext *pb, AVStream *st, bitmap = avio_rb32(pb); num_descr = avio_rb32(pb); - av_log(s, AV_LOG_TRACE, "chan: layout=%"PRIu32" " + av_log(s, AV_LOG_DEBUG, "chan: layout=%"PRIu32" " "bitmap=%"PRIu32" num_descr=%"PRIu32"\n", layout_tag, bitmap, num_descr); |