summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-01-03 20:27:59 +0100
committerDiego Biurrun <diego@biurrun.de>2016-10-27 12:54:14 +0200
commitca1e5eea0c7b72a6e30aa6488cfeced3a4853521 (patch)
treecf0e3ff8f23b87817f23a304fc5198d84913e4ba /libavformat/mov.c
parent07eea5a5ded1141632aefecfa59dcdc26de2d7ea (diff)
Remove some pointless TRACE level debug code
This also kills some warnings with certain compiler options.
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index fee9f36382..34ab205d9c 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -427,9 +427,6 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
av_dict_set(&c->fc->metadata, key2, str, 0);
}
}
- av_log(c->fc, AV_LOG_TRACE, "lang \"%3s\" ", language);
- av_log(c->fc, AV_LOG_TRACE, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
- key, str, (char*)&atom.type, str_size_alloc, atom.size);
av_freep(&str);
return 0;
@@ -505,7 +502,6 @@ static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
dref->type = avio_rl32(pb);
avio_rb32(pb); // version + flags
- av_log(c->fc, AV_LOG_TRACE, "type %.4s size %d\n", (char*)&dref->type, size);
if (dref->type == MKTAG('a','l','i','s') && size > 150) {
/* macintosh alias record */
@@ -2010,7 +2006,6 @@ static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
for (i = 0; i < entries && !pb->eof_reached; i++) {
sc->stps_data[i] = avio_rb32(pb);
- //av_log(c->fc, AV_LOG_TRACE, "stps %d\n", sc->stps_data[i]);
}
sc->stps_count = i;
@@ -2053,7 +2048,6 @@ static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
for (i = 0; i < entries && !pb->eof_reached; i++) {
sc->keyframes[i] = avio_rb32(pb);
- //av_log(c->fc, AV_LOG_TRACE, "keyframes[]=%d\n", sc->keyframes[i]);
}
sc->keyframe_count = i;