diff options
| author | Torne Wuff <torne@wolfpuppy.org.uk> | 2010-09-28 19:46:15 +0000 |
|---|---|---|
| committer | Torne Wuff <torne@wolfpuppy.org.uk> | 2010-09-28 19:46:15 +0000 |
| commit | 918e895c12a25365b15f9df82c2aa33bfb74436a (patch) | |
| tree | ca68ed03ea81748cbc40316f54112359d7e8e5e4 /apps | |
| parent | f018fbbe1806235bbc6f7128e26bb67ec5cfd97c (diff) | |
| download | rockbox-918e895c12a25365b15f9df82c2aa33bfb74436a.zip rockbox-918e895c12a25365b15f9df82c2aa33bfb74436a.tar.gz rockbox-918e895c12a25365b15f9df82c2aa33bfb74436a.tar.bz2 rockbox-918e895c12a25365b15f9df82c2aa33bfb74436a.tar.xz | |
id3 parser: also add id3v2.2 TCM tag for "composer" since that's the only other tag not in there in 2.2 and 2.3 versions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28182 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/metadata/id3tags.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/metadata/id3tags.c b/apps/metadata/id3tags.c index 39dd25a..f3ddd73 100644 --- a/apps/metadata/id3tags.c +++ b/apps/metadata/id3tags.c @@ -430,6 +430,7 @@ static const struct tag_resolver taglist[] = { { "TYER", 4, offsetof(struct mp3entry, year_string), &parseyearnum, false }, { "TYE", 3, offsetof(struct mp3entry, year_string), &parseyearnum, false }, { "TCOM", 4, offsetof(struct mp3entry, composer), NULL, false }, + { "TCM", 3, offsetof(struct mp3entry, composer), NULL, false }, { "TPE2", 4, offsetof(struct mp3entry, albumartist), NULL, false }, { "TP2", 3, offsetof(struct mp3entry, albumartist), NULL, false }, { "TIT1", 4, offsetof(struct mp3entry, grouping), NULL, false }, |