]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mlvdec.c
Merge commit '4537647c0429fe7c8ee655ac3fda856ba67f58a0'
[ffmpeg] / libavformat / mlvdec.c
index 90c3779e443cdc9a0188dc0f7ddca1f27f307f3e..319cd26de4f0032e99721749ff3b58a0874ed1fc 100644 (file)
@@ -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);
     }