diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-01-25 11:49:04 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-01-25 11:49:04 +0100 |
commit | a135b017dec55d7cd10d400081f7eee3b32210c8 (patch) | |
tree | 5f534ed0c84ef307e52d2a32097849cf75da7988 | |
parent | 5316ed899f35e2f8c99720ad27516edac0e00d6b (diff) | |
download | ffmpeg-a135b017dec55d7cd10d400081f7eee3b32210c8.tar.gz |
lavf/mov: Unscramble dref debug output.
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index d1b929174d..7dc550eb99 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -689,7 +689,7 @@ static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom) avio_skip(pb, len); } } else { - av_log(c->fc, AV_LOG_DEBUG, "Unknown dref type 0x08%x size %d\n", + av_log(c->fc, AV_LOG_DEBUG, "Unknown dref type 0x%08x size %d\n", dref->type, size); entries--; i--; |