aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/flac_plugin.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2005-03-05 22:24:10 +0000
committerWarren Dukes <warren.dukes@gmail.com>2005-03-05 22:24:10 +0000
commit3bdee5521711f338b9ce0701d51543bee24008fc (patch)
tree45e61023164f78259095f299e32a5d386a405bc3 /src/inputPlugins/flac_plugin.c
parent4b016cafa1e44294605467dd95efb421b96574a5 (diff)
downloadmpd-3bdee5521711f338b9ce0701d51543bee24008fc.tar.gz
mpd-3bdee5521711f338b9ce0701d51543bee24008fc.tar.xz
mpd-3bdee5521711f338b9ce0701d51543bee24008fc.zip
added composer, performer, and comment metadata items
git-svn-id: https://svn.musicpd.org/mpd/trunk@3022 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins/flac_plugin.c')
-rw-r--r--src/inputPlugins/flac_plugin.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/inputPlugins/flac_plugin.c b/src/inputPlugins/flac_plugin.c
index a9e5a8e9e..9c20a996d 100644
--- a/src/inputPlugins/flac_plugin.c
+++ b/src/inputPlugins/flac_plugin.c
@@ -499,6 +499,16 @@ static MpdTag * copyVorbisCommentBlockToMpdTag(FLAC__StreamMetadata * block,
block->data.vorbis_comment.comments+i,
TAG_ITEM_DATE,
&tag));
+ else if(commentMatchesAddToTag(
+ "composer=",
+ block->data.vorbis_comment.comments+i,
+ TAG_ITEM_COMPOSER,
+ &tag));
+ else if(commentMatchesAddToTag(
+ "performer=",
+ block->data.vorbis_comment.comments+i,
+ TAG_ITEM_PERFORMER,
+ &tag));
}
return tag;