diff options
author | Peter Ross <pross@xvid.org> | 2009-08-12 13:17:39 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2009-08-12 13:17:39 +0000 |
commit | c0b88f1920ce100e49ec2fdacff327e97a7b3c27 (patch) | |
tree | eb96fdcffa5cae535ffcda0199d720227aa33723 /ffplay.c | |
parent | 5f71844e788b1dd06e87d95ca9ce823770f9a4f0 (diff) | |
download | ffmpeg-c0b88f1920ce100e49ec2fdacff327e97a7b3c27.tar.gz |
Moves the display of metadata to dump_format()
Originally committed as revision 19632 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -1860,13 +1860,6 @@ static void stream_component_close(VideoState *is, int stream_index) } } -static void dump_stream_info(const AVFormatContext *s) -{ - AVMetadataTag *tag = NULL; - while ((tag=av_metadata_get(s->metadata,"",tag,AV_METADATA_IGNORE_SUFFIX))) - fprintf(stderr, "%s: %s\n", tag->key, tag->value); -} - /* since we have only one decoding thread, we can use a global variable instead of a thread local variable */ static VideoState *global_video_state; @@ -1960,7 +1953,6 @@ static int decode_thread(void *arg) } if (show_status) { dump_format(ic, 0, is->filename, 0); - dump_stream_info(ic); } /* open the streams */ |