2019-11-14 19:04:24 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2019 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// (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 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef PLUGINS_CHANNELTX_LOCALSOURCE_LOCALSOURCESOURCE_H_
|
|
|
|
#define PLUGINS_CHANNELTX_LOCALSOURCE_LOCALSOURCESOURCE_H_
|
|
|
|
|
|
|
|
#include <QObject>
|
2020-07-11 20:54:11 -04:00
|
|
|
#include <QThread>
|
2019-11-14 19:04:24 -05:00
|
|
|
|
|
|
|
#include "dsp/channelsamplesource.h"
|
|
|
|
#include "localsourcesettings.h"
|
|
|
|
|
|
|
|
class DeviceSampleSink;
|
|
|
|
class SampleSourceFifo;
|
2020-07-11 20:54:11 -04:00
|
|
|
class LocalSourceWorker;
|
2019-11-14 19:04:24 -05:00
|
|
|
|
|
|
|
class LocalSourceSource : public QObject, public ChannelSampleSource {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LocalSourceSource();
|
|
|
|
~LocalSourceSource();
|
|
|
|
|
|
|
|
virtual void pull(SampleVector::iterator begin, unsigned int nbSamples);
|
|
|
|
virtual void pullOne(Sample& sample);
|
|
|
|
virtual void prefetch(unsigned int nbSamples) {}
|
|
|
|
|
|
|
|
void start(DeviceSampleSink *deviceSink);
|
|
|
|
void stop();
|
|
|
|
bool isRunning() const { return m_running; }
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void pullSamples(unsigned int count);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_running;
|
2020-07-11 20:54:11 -04:00
|
|
|
LocalSourceWorker *m_sinkWorker;
|
|
|
|
QThread m_sinkWorkerThread;
|
2019-11-14 19:04:24 -05:00
|
|
|
SampleSourceFifo *m_localSampleSourceFifo;
|
|
|
|
int m_chunkSize;
|
|
|
|
SampleVector m_localSamples;
|
|
|
|
int m_localSamplesIndex;
|
|
|
|
int m_localSamplesIndexOffset;
|
|
|
|
|
2020-07-11 20:54:11 -04:00
|
|
|
void startWorker();
|
|
|
|
void stopWorker();
|
|
|
|
|
2019-11-14 19:04:24 -05:00
|
|
|
private slots:
|
|
|
|
void processSamples(unsigned int iPart1Begin, unsigned int iPart1End, unsigned int iPart2Begin, unsigned int iPart2End);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // PLUGINS_CHANNELTX_LOCALSOURCE_LOCALSOURCESOURCE_H_
|