/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2016 F4EXB // // written by Edouard Griffiths // // // // 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 as version 3 of the License, or // // // // 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 V3 for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // /////////////////////////////////////////////////////////////////////////////////// #include #include "dsp/dvserialworker.h" #include "audio/audiofifo.h" MESSAGE_CLASS_DEFINITION(DVSerialWorker::MsgMbeDecode, Message) MESSAGE_CLASS_DEFINITION(DVSerialWorker::MsgTest, Message) DVSerialWorker::DVSerialWorker() : m_running(false), m_currentGainIn(0), m_currentGainOut(0) { } DVSerialWorker::~DVSerialWorker() { } bool DVSerialWorker::open(const std::string& serialDevice) { return m_dvController.open(serialDevice); } void DVSerialWorker::close() { m_dvController.close(); } void DVSerialWorker::process() { m_running = true; qDebug("DVSerialWorker::process: started"); while (m_running) { sleep(1); } qDebug("DVSerialWorker::process: stopped"); emit finished(); } void DVSerialWorker::stop() { m_running = false; } void DVSerialWorker::handleInputMessages() { Message* message; while ((message = m_inputMessageQueue.pop()) != 0) { qDebug("DVSerialWorker::handleInputMessages: message"); if (MsgMbeDecode::match(*message)) { MsgMbeDecode *decodeMsg = (MsgMbeDecode *) message; int dBVolume = (decodeMsg->getVolumeIndex() - 50) / 5; if (m_dvController.decode(m_audioSamples, decodeMsg->getMbeFrame(), decodeMsg->getMbeRate(), dBVolume)) { decodeMsg->getAudioFifo()->write((const quint8 *) m_audioSamples, SerialDV::MBE_AUDIO_BLOCK_SIZE, 10); } } delete message; } }