diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-27 09:45:35 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-29 14:49:29 +0200 |
commit | bec96a7286bc415dd737c8c8f430f0176999e720 (patch) | |
tree | b89f90048e94b153a4a3d7e494d93c57cc7db0a2 /libavformat/mlvdec.c | |
parent | d3cedc54cc872a376851828c88103c653fc8c395 (diff) | |
download | ffmpeg-bec96a7286bc415dd737c8c8f430f0176999e720.tar.gz |
lavf: use av_fourcc2str() where appropriate
Diffstat (limited to 'libavformat/mlvdec.c')
-rw-r--r-- | libavformat/mlvdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mlvdec.c b/libavformat/mlvdec.c index 90c3779e44..319cd26de4 100644 --- a/libavformat/mlvdec.c +++ b/libavformat/mlvdec.c @@ -242,7 +242,8 @@ 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 %u\n", type&0xFF, (type>>8)&0xFF, (type>>16)&0xFF, (type>>24)&0xFF, size); + av_log(avctx, AV_LOG_INFO, "unsupported tag %s, size %u\n", + av_fourcc2str(type), size); } avio_skip(pb, size); } |