summaryrefslogtreecommitdiff
path: root/libavformat/mlvdec.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2014-04-27 12:42:28 +1000
committerMichael Niedermayer <michaelni@gmx.at>2014-04-27 14:37:54 +0200
commit9abf08f79fb3227d5efe1d9a05df122be0f3006e (patch)
treedfdb4bb97f8f1288c59bd224c0667649a09c94a1 /libavformat/mlvdec.c
parentbdab0c2d76434ac757be552d71a90129874879ed (diff)
avformat/mlvdec: print unsigned chunk size
Signed-off-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mlvdec.c')
-rw-r--r--libavformat/mlvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mlvdec.c b/libavformat/mlvdec.c
index db7576bfdf..6550e866a3 100644
--- a/libavformat/mlvdec.c
+++ b/libavformat/mlvdec.c
@@ -239,7 +239,7 @@ static int scan_file(AVFormatContext *avctx, AVStream *vst, AVStream *ast, int f
} else if (type == MKTAG('N','U','L','L')) {
} else if (type == MKTAG('M','L','V','I')) { /* occurs when MLV and Mnn files are concatenated */
} else {
- av_log(avctx, AV_LOG_INFO, "unsupported tag %c%c%c%c, size %d\n", type&0xFF, (type>>8)&0xFF, (type>>16)&0xFF, (type>>24)&0xFF, size);
+ av_log(avctx, AV_LOG_INFO, "unsupported tag %c%c%c%c, size %u\n", type&0xFF, (type>>8)&0xFF, (type>>16)&0xFF, (type>>24)&0xFF, size);
}
avio_skip(pb, size);
}