From 892d61b4dc43869940959a82197d865390c04509 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 6 Mar 2008 14:13:41 +0000 Subject: added wavpack plugin git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@263 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/wavpack/decoder_wavpack.cpp | 287 ++++++++++++++++++++++++++ 1 file changed, 287 insertions(+) create mode 100644 src/plugins/Input/wavpack/decoder_wavpack.cpp (limited to 'src/plugins/Input/wavpack/decoder_wavpack.cpp') diff --git a/src/plugins/Input/wavpack/decoder_wavpack.cpp b/src/plugins/Input/wavpack/decoder_wavpack.cpp new file mode 100644 index 000000000..7cca9545c --- /dev/null +++ b/src/plugins/Input/wavpack/decoder_wavpack.cpp @@ -0,0 +1,287 @@ +/*************************************************************************** + * Copyright (C) 2008 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "decoder_wavpack.h" + +// Decoder class + +DecoderWavPack::DecoderWavPack(QObject *parent, DecoderFactory *d, QIODevice *i, Output *o) + : Decoder(parent, d, i, o) +{ + m_inited = FALSE; + m_user_stop = FALSE; + m_output_buf = 0; + m_output_bytes = 0; + m_output_at = 0; + m_bks = 0; + m_done = FALSE; + m_finish = FALSE; + m_freq = 0; + m_bitrate = 0; + m_seekTime = -1.0; + m_totalTime = 0.0; + m_chan = 0; + m_output_size = 0; + m_context = 0; +} + +DecoderWavPack::~DecoderWavPack() +{ + deinit(); + if (m_output_buf) + delete [] m_output_buf; + m_output_buf = 0; +} + +void DecoderWavPack::stop() +{ + m_user_stop = TRUE; +} + +void DecoderWavPack::flush(bool final) +{ + ulong min = final ? 0 : m_bks; + + while ((! m_done && ! m_finish) && m_output_bytes > min) + { + output()->recycler()->mutex()->lock (); + + while ((! m_done && ! m_finish) && output()->recycler()->full()) + { + mutex()->unlock(); + + output()->recycler()->cond()->wait(output()->recycler()->mutex()); + + mutex()->lock (); + m_done = m_user_stop; + } + + if (m_user_stop || m_finish) + { + m_inited = FALSE; + m_done = TRUE; + } + else + { + m_output_bytes -= produceSound(m_output_buf, m_output_bytes, m_bitrate, m_chan); + m_output_size += m_bks; + m_output_at = m_output_bytes; + } + + if (output()->recycler()->full()) + { + output()->recycler()->cond()->wakeOne(); + } + + output()->recycler()->mutex()->unlock(); + } +} + +bool DecoderWavPack::initialize() +{ + m_bks = blockSize(); + m_inited = m_user_stop = m_done = m_finish = FALSE; + m_freq = m_bitrate = 0; + m_chan = 0; + m_output_size = 0; + m_seekTime = -1.0; + m_totalTime = 0.0; + + + if (! input()) + { + error("DecoderWavPack: cannot initialize. No input."); + + return FALSE; + } + + if (! m_output_buf) + m_output_buf = new char[globalBufferSize]; + m_output_at = 0; + m_output_bytes = 0; + + if (! input()) + { + error("DecoderWavPack: cannot initialize. No input."); + return FALSE; + } + + if (! m_output_buf) + m_output_buf = new char[globalBufferSize]; + m_output_at = 0; + m_output_bytes = 0; + + QString filename = qobject_cast(input())->fileName (); + input()->close(); + + char err [80]; + m_context = WavpackOpenFileInput (filename.toLocal8Bit(), err, + OPEN_WVC | OPEN_TAGS, 0); + if(!m_context) + { + error(QString("DecoderWavPack: error: %1").arg(err)); + return FALSE; + } + m_chan = WavpackGetNumChannels(m_context); + m_freq = WavpackGetSampleRate (m_context); + m_bps = WavpackGetBitsPerSample (m_context); + configure(m_freq, m_chan, m_bps, int(WavpackGetAverageBitrate(m_context, m_chan)/1000)); + m_totalTime = (int) WavpackGetNumSamples(m_context)/m_freq; + m_inited = TRUE; + qDebug("DecoderWavPack: initialize succes"); + return TRUE; +} + +double DecoderWavPack::lengthInSeconds() +{ + if (! m_inited) + return 0; + + return m_totalTime; +} + + +void DecoderWavPack::seek(double pos) +{ + m_seekTime = pos; +} + +void DecoderWavPack::deinit() +{ + m_inited = m_user_stop = m_done = m_finish = FALSE; + m_freq = m_bitrate = 0; + m_chan = 0; + m_output_size = 0; + if(m_context) + { + WavpackCloseFile (m_context); + m_context = 0; + } +} + +void DecoderWavPack::run() +{ + mutex()->lock (); + + ulong len = 0; + int32_t *in = new int32_t[globalBufferSize * m_chan / m_chan / 4]; + int16_t *out = new int16_t[globalBufferSize * m_chan / m_chan / 4]; + uint32_t samples = 0; + + if (! m_inited) + { + mutex()->unlock(); + + return; + } + mutex()->unlock(); + dispatch(DecoderState::Decoding); + + while (! m_done && ! m_finish) + { + mutex()->lock (); + + //seeking + + if (m_seekTime >= 0.0) + { + WavpackSeekSample (m_context, m_seekTime * m_freq); + m_seekTime = -1.0; + } + + // decode + samples = (globalBufferSize-m_output_at)/m_chan/4; + + len = WavpackUnpackSamples (m_context, in, samples); + for(ulong i = 0; i < len * m_chan; ++i) + out[i] = in[i]; + + len *= (m_chan * 2); //convert to number of bytes + memcpy(m_output_buf + m_output_at, (char *) out, len); + + if (len > 0) + { + m_bitrate =int( WavpackGetInstantBitrate(m_context)/1000); + m_output_at += len; + m_output_bytes += len; + + if (output()) + flush(); + + } + else if (len == 0) + { + flush(TRUE); + + if (output()) + { + output()->recycler()->mutex()->lock (); + // end of stream + while (! output()->recycler()->empty() && ! m_user_stop) + { + output()->recycler()->cond()->wakeOne(); + mutex()->unlock(); + output()->recycler()->cond()->wait(output()->recycler()->mutex()); + mutex()->lock (); + } + output()->recycler()->mutex()->unlock(); + } + + m_done = TRUE; + if (! m_user_stop) + { + m_finish = TRUE; + } + } + else + { + // error in read + error("DecoderWavPack: Error while decoding stream, File appears to be " + "corrupted"); + m_finish = TRUE; + } + mutex()->unlock(); + } + + mutex()->lock (); + + delete[] in; + delete[] out; + + if (m_finish) + dispatch(DecoderState::Finished); + else if (m_user_stop) + dispatch(DecoderState::Stopped); + + mutex()->unlock(); + + deinit(); +} -- cgit v1.2.3-13-gbd6f