diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-10-28 05:14:55 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-10-28 05:14:55 +0000 |
commit | 58dbe4bb5d974c34335d6906a9ce930f07cd1db4 (patch) | |
tree | 9a6aee08b21100cb74e809f0620d81466f6067df /src/tag.c | |
parent | 8f40569aeeafe4a36e3d719c1df97de42606ea76 (diff) | |
download | mpd-58dbe4bb5d974c34335d6906a9ce930f07cd1db4.tar.gz mpd-58dbe4bb5d974c34335d6906a9ce930f07cd1db4.tar.xz mpd-58dbe4bb5d974c34335d6906a9ce930f07cd1db4.zip |
merge shank-rewrite-config changes
git-svn-id: https://svn.musicpd.org/mpd/trunk@2375 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/tag.c')
-rw-r--r-- | src/tag.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -93,18 +93,6 @@ char * getID3Info(struct id3_tag * tag, char * id) { utf8 = id3_ucs4_utf8duplicate(ucs4); if(!utf8) return NULL; - if(getConf()[CONF_ID3V1_ENCODING] - && (id3_tag_options(tag, 0, 0) & ID3_TAG_OPTION_ID3V1)) { - - char* isostr; - setCharSetConversion("ISO-8859-1", "UTF-8"); - isostr = convStrDup(utf8); - free(utf8); - setCharSetConversion("UTF-8", getConf()[CONF_ID3V1_ENCODING]); - utf8 = convStrDup(isostr); - free(isostr); - } - return utf8; } #endif |