mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-20 10:43:10 +00:00
avformat/mlvdec: print unsigned chunk size
Signed-off-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bdab0c2d76
commit
9abf08f79f
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user