diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-06-24 16:55:59 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-06-24 16:55:59 +0000 |
| commit | 0d919a16efda7db3a76765dbcdcb7574b6b3bb33 (patch) | |
| tree | a6683343f5b9b6b53e1024b6f022cddeaf8fb223 /src/plugins/Input/aac | |
| parent | 1ee602e514927b7a7db427c4fcbedfded19c44e0 (diff) | |
| download | qmmp-0d919a16efda7db3a76765dbcdcb7574b6b3bb33.tar.gz qmmp-0d919a16efda7db3a76765dbcdcb7574b6b3bb33.tar.bz2 qmmp-0d919a16efda7db3a76765dbcdcb7574b6b3bb33.zip | |
show codec and bitrate for IceCast streams (#1046)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9419 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/aac')
| -rw-r--r-- | src/plugins/Input/aac/decoder_aac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Input/aac/decoder_aac.cpp b/src/plugins/Input/aac/decoder_aac.cpp index 943614121..ec7b45696 100644 --- a/src/plugins/Input/aac/decoder_aac.cpp +++ b/src/plugins/Input/aac/decoder_aac.cpp @@ -18,7 +18,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ - #include <QObject> #include <QIODevice> #include <QtGlobal> @@ -131,6 +130,7 @@ bool DecoderAAC::initialize() memmove(m_input_buf, m_input_buf + res, m_input_at - res); m_input_at -= res; + setProperty(Qmmp::FORMAT_NAME, "AAC"); configure(freq, chan, Qmmp::PCM_S16LE); qDebug("DecoderAAC: initialize succes"); return true; |
