summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-06-30 15:38:48 +0200
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-07-01 00:13:58 +0100
commita1e2caa93e4f8102666a21222f01b74838b6497f (patch)
tree20224df643ef6ec9c827fd6150925350734a516f /libavformat/mov.c
parent2eef75fd7e1ac96ab9ca63bb4523078c908bc9b1 (diff)
mov: Log format rather than fourcc in stsd in trace mode
This will fix remaining format warnings.
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index ba052067f6..d075645bea 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1791,9 +1791,9 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
id = mov_codec_id(st, format);
- av_log(c->fc, AV_LOG_TRACE, "size=%"PRIu32" 4CC= %"PRIu8"%"PRIu8"%"PRIu8"%"PRIu8" codec_type=%d\n", size,
- (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
- (format >> 24) & 0xff, st->codec->codec_type);
+ av_log(c->fc, AV_LOG_TRACE,
+ "size=%"PRIu32" format=0x%08x codec_type=%d\n",
+ size, format, st->codec->codec_type);
if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
st->codec->codec_id = id;