diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-10-19 19:56:06 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-10-19 19:56:06 +0000 |
| commit | 42c8e4cad08dcabe8e3d89beb2960b2fab2b879d (patch) | |
| tree | b1d778b2f503612850c725be1f51354cb41e43df /src/plugins | |
| parent | 483b7f6dd628ccfff50617bc51c6082b0b388c30 (diff) | |
| download | qmmp-42c8e4cad08dcabe8e3d89beb2960b2fab2b879d.tar.gz qmmp-42c8e4cad08dcabe8e3d89beb2960b2fab2b879d.tar.bz2 qmmp-42c8e4cad08dcabe8e3d89beb2960b2fab2b879d.zip | |
fixed rusxmms support (#924)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7594 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/Input/mad/mpegmetadatamodel.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/Input/mad/mpegmetadatamodel.cpp b/src/plugins/Input/mad/mpegmetadatamodel.cpp index d7437a767..1a0371b39 100644 --- a/src/plugins/Input/mad/mpegmetadatamodel.cpp +++ b/src/plugins/Input/mad/mpegmetadatamodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2017 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -281,6 +281,9 @@ void MpegFileTagModel::setValue(Qmmp::MetaData key, const QString &value) { if(m_codec->name().contains("UTF") && !m_using_rusxmms) //utf is unsupported return; + + if(m_using_rusxmms) + type = TagLib::String::UTF8; } else if (m_tagType == TagLib::MPEG::File::ID3v2) { |
