From 7297c889986574bd53e2ac1d02bc08d70ff7e5c3 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 31 Dec 2014 21:07:50 +0100 Subject: 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. --- options/options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'options') 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 }, }; -- cgit v1.2.3