[SCM] libav/experimental: 10l: add prefix "TAG:" to the metadata tags key showed for each stream.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:01:38 UTC 2013


The following commit has been merged in the experimental branch:
commit b6a4185367faa7785fa5d3fc93caa82b1e659386
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Thu Feb 25 00:16:43 2010 +0000

    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.
    
    Originally committed as revision 22046 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffprobe.c b/ffprobe.c
index 7ac20eb..4a8ca88 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -184,7 +184,7 @@ static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
                                                   &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");
 }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list