aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-01-15 22:16:44 -0300
committerJames Almer <jamrial@gmail.com>2024-01-15 22:17:50 -0300
commitbe4fcf027b768161bf622e8fbeb326139334dd74 (patch)
treea9c7eef153a953cf172a91c8fc29f247e49ddb52 /libavformat/mov.c
parentde8305e0973c1cab820182c3a79cd59dcb003942 (diff)
downloadffmpeg-be4fcf027b768161bf622e8fbeb326139334dd74.tar.gz
avformat/mov: reset a log message as trace level
Accidentally changed in d9fed9df2a Signed-off-by: James Almer <jamrial@gmail.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 53a3d22726..7e3b0c4a55 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -8220,7 +8220,7 @@ static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
a.size = avio_rb64(pb) - 8;
total_size += 8;
}
- av_log(c->fc, AV_LOG_DEBUG, "type:'%s' parent:'%s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
+ av_log(c->fc, AV_LOG_TRACE, "type:'%s' parent:'%s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
av_fourcc2str(a.type), av_fourcc2str(atom.type), a.size, total_size, atom.size);
if (a.size == 0) {
a.size = atom.size - total_size + 8;