I've been using these macros according to TagLib sources:<br><br>#define QS(s) QString::fromUtf8(s.toCString(true))<br>#define TS(s) TagLib::String(s.toUtf8().constData(),TagLib::String::UTF8)<br><br>Is there any benefit (less memory consumption, faster conversion) to use the following macros:<br>
<br>#define QS(s) QString::fromStdWString(s.toWString())<br>#define TS(s) TagLib::String(s.toStdWString())<br>