[FFmpeg-cvslog] r22046 - trunk/ffprobe.c

stefano subversion
Thu Feb 25 01:16:43 CET 2010


Author: stefano
Date: Thu Feb 25 01:16:43 2010
New Revision: 22046

Log:
10l: add prefix "TAG:" to the metadata tags key showed for each stream.

This is consistent with the metadata displaying in show_format() and
with the documentation.

Modified:
   trunk/ffprobe.c

Modified: trunk/ffprobe.c
==============================================================================
--- trunk/ffprobe.c	Thu Feb 25 01:05:01 2010	(r22045)
+++ trunk/ffprobe.c	Thu Feb 25 01:16:43 2010	(r22046)
@@ -184,7 +184,7 @@ static void show_stream(AVFormatContext 
                                                   &stream->time_base));
 
     while ((tag = av_metadata_get(stream->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX)))
-        printf("%s=%s\n", tag->key, tag->value);
+        printf("TAG:%s=%s\n", tag->key, tag->value);
 
     printf("[/STREAM]\n");
 }



More information about the ffmpeg-cvslog mailing list