1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

RxTx semantic move: renamed SampleFifo to SampleSinkFifo

This commit is contained in:
f4exb
2016-10-06 19:18:02 +02:00
parent 12ac603741
commit 36aeaa3ea5
28 changed files with 86 additions and 76 deletions
+3 -3
View File
@@ -20,15 +20,15 @@
#include <QThread>
#include <QMutex>
#include <QWaitCondition>
#include "dsp/samplefifo.h"
#include "dsp/inthalfbandfilter.h"
#include <alsa/asoundlib.h>
#include "../../../sdrbase/dsp/samplesinkfifo.h"
class FCDProThread : public QThread {
Q_OBJECT
public:
FCDProThread(SampleFifo* sampleFifo, QObject* parent = NULL);
FCDProThread(SampleSinkFifo* sampleFifo, QObject* parent = NULL);
~FCDProThread();
void startWork();
@@ -44,7 +44,7 @@ private:
bool m_running;
SampleVector m_convertBuffer;
SampleFifo* m_sampleFifo;
SampleSinkFifo* m_sampleFifo;
void run();
int work(int n_items);