comparison data/fileio/OggVorbisFileReader.cpp @ 634:773fc0e43feb

* First bits of works matching
author Chris Cannam
date Fri, 26 Mar 2010 13:53:31 +0000
parents 7feec7756b41
children 06f13a3b9e9e
comparison
equal deleted inserted replaced
633:7feec7756b41 634:773fc0e43feb
180 if (comment && comment->value) { 180 if (comment && comment->value) {
181 reader->m_maker = QString::fromUtf8(comment->value); 181 reader->m_maker = QString::fromUtf8(comment->value);
182 } 182 }
183 comment = fish_sound_comment_first(fs); 183 comment = fish_sound_comment_first(fs);
184 while (comment) { 184 while (comment) {
185 reader->m_tags[QString::fromUtf8(comment->name)] = 185 reader->m_tags[QString::fromUtf8(comment->name).toUpper()] =
186 QString::fromUtf8(comment->value); 186 QString::fromUtf8(comment->value);
187 comment = fish_sound_comment_next(fs, comment); 187 comment = fish_sound_comment_next(fs, comment);
188 } 188 }
189 reader->m_commentsRead = true; 189 reader->m_commentsRead = true;
190 } 190 }