summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2011-12-07 18:30:15 +0200
committerLaszlo Papp <ext-laszlo.papp@nokia.com>2011-12-07 18:30:15 +0200
commitdb6ca75ce76d213f6e0fa697d6bea491aac9d8e2 (patch)
treec737b320940bb8467664c37162516c6eb0c735aa /src
parenteacac25c818f7f981c32574a4346587018909cc7 (diff)
Remove the leftover mpg123 entries from the private class' ctor and dtor
Diffstat (limited to 'src')
-rw-r--r--src/decoders/qalflacaudiodecoder.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/decoders/qalflacaudiodecoder.cpp b/src/decoders/qalflacaudiodecoder.cpp
index c62b2ac..38e441c 100644
--- a/src/decoders/qalflacaudiodecoder.cpp
+++ b/src/decoders/qalflacaudiodecoder.cpp
@@ -32,15 +32,10 @@ class QALFlacAudioDecoder::Private
Private()
: flacStreamDecoder(0)
{
- int error;
- if ((error = mpg123_init()) == MPG123_OK) {
- qWarning() << Q_FUNC_INFO << "Failed to initialize the mpg123 library:" << error;
- }
}
~Private()
{
- mpg123_exit();
}
static FLAC__StreamDecoderReadStatus readCallback(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);