Skip dumping language twice.

This looks too ugly. Idea also from ffmbc.

Originally committed as revision 20847 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-12-13 23:30:41 +00:00
parent 2e720e11bc
commit 4d9b678448
1 changed files with 1 additions and 0 deletions

View File

@ -2859,6 +2859,7 @@ static void dump_metadata(void *ctx, AVMetadata *m, const char *indent)
av_log(ctx, AV_LOG_INFO, "%sMetadata:\n", indent);
while((tag=av_metadata_get(m, "", tag, AV_METADATA_IGNORE_SUFFIX))) {
if(strcmp("language", tag->key))
av_log(ctx, AV_LOG_INFO, "%s %-16s: %s\n", indent, tag->key, tag->value);
}
}