2015-09-02 21:57:54 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2018-11-19 19:48:17 -05:00
|
|
|
// Copyright (C) 2015-2018 Edouard Griffiths, F4EXB //
|
2015-09-02 21:57:54 -04:00
|
|
|
// //
|
|
|
|
// 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 <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
#ifndef INCLUDE_FCDPROTHREAD_H
|
|
|
|
#define INCLUDE_FCDPROTHREAD_H
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QWaitCondition>
|
2018-11-19 19:48:17 -05:00
|
|
|
|
2017-10-22 13:12:43 -04:00
|
|
|
#include "dsp/samplesinkfifo.h"
|
2018-11-19 19:48:17 -05:00
|
|
|
#include "dsp/decimators.h"
|
|
|
|
#include "fcdtraits.h"
|
|
|
|
|
|
|
|
class AudioFifo;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
class FCDProThread : public QThread {
|
2015-09-02 21:57:54 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-11-19 19:48:17 -05:00
|
|
|
FCDProThread(SampleSinkFifo* sampleFifo, AudioFifo *fcdFIFO, QObject* parent = nullptr);
|
2015-09-03 22:10:38 -04:00
|
|
|
~FCDProThread();
|
2015-09-02 21:57:54 -04:00
|
|
|
|
2015-09-03 02:39:57 -04:00
|
|
|
void startWork();
|
2015-09-02 21:57:54 -04:00
|
|
|
void stopWork();
|
2015-09-03 02:39:57 -04:00
|
|
|
|
2015-09-02 21:57:54 -04:00
|
|
|
private:
|
2018-11-19 19:48:17 -05:00
|
|
|
AudioFifo* m_fcdFIFO;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
QMutex m_startWaitMutex;
|
|
|
|
QWaitCondition m_startWaiter;
|
|
|
|
bool m_running;
|
|
|
|
|
2018-11-19 19:48:17 -05:00
|
|
|
qint16 m_buf[fcd_traits<Pro>::convBufSize*2]; // stereo (I, Q)
|
2015-09-02 21:57:54 -04:00
|
|
|
SampleVector m_convertBuffer;
|
2016-10-06 13:18:02 -04:00
|
|
|
SampleSinkFifo* m_sampleFifo;
|
2018-11-19 19:48:17 -05:00
|
|
|
Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 16> m_decimators;
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
void run();
|
2018-11-19 19:48:17 -05:00
|
|
|
void work(unsigned int n_items);
|
2015-09-02 21:57:54 -04:00
|
|
|
};
|
2018-11-19 19:48:17 -05:00
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
#endif // INCLUDE_FCDPROTHREAD_H
|