summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-31 21:07:50 +0100
committerwm4 <wm4@nowhere>2014-12-31 21:07:50 +0100
commit7297c889986574bd53e2ac1d02bc08d70ff7e5c3 (patch)
tree3645d98d18f9a6b0a8fb94d082bc7bfe190fa1e8 /options
parent3e12e79b8f433f47aa4b7d9bec624012149d2e47 (diff)
downloadmpv-7297c889986574bd53e2ac1d02bc08d70ff7e5c3.tar.bz2
mpv-7297c889986574bd53e2ac1d02bc08d70ff7e5c3.tar.xz
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.
Diffstat (limited to 'options')
-rw-r--r--options/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/options.c b/options/options.c
index 8393971456..19dca2ad1b 100644
--- a/options/options.c
+++ b/options/options.c
@@ -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
},
};