player: capitalize --display-tags items

Tags keys are case-insensitive. Before commit 8048374a, the casing of
whatever FFmpeg returned was used (it was quite random). But since the
change, the values in --display-tags decides. Consider this an
accidental feature, and make the output nicer by capitalizing
the tag names.
This commit is contained in:
wm4 2014-12-31 21:07:50 +01:00
parent 3e12e79b8f
commit 7297c88998
1 changed files with 2 additions and 2 deletions

View File

@ -782,8 +782,8 @@ const struct MPOpts mp_default_opts = {
.mf_fps = 1.0,
.display_tags = (char **)(const char*[]){
"artist", "album", "album_artist", "comment", "composer", "genre",
"performer", "title", "track", "icy-title",
"Artist", "Album", "Album_Artist", "Comment", "Composer", "Genre",
"Performer", "Title", "Track", "icy-title",
NULL
},
};