1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-29 21:44:14 -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
+4 -3
View File
@@ -21,7 +21,8 @@
#include <QMutex>
#include <QWaitCondition>
#include <libairspy/airspy.h>
#include "dsp/samplefifo.h"
#include "../../../sdrbase/dsp/samplesinkfifo.h"
#include "dsp/decimators.h"
#define AIRSPY_BLOCKSIZE (1<<17)
@@ -30,7 +31,7 @@ class AirspyThread : public QThread {
Q_OBJECT
public:
AirspyThread(struct airspy_device* dev, SampleFifo* sampleFifo, QObject* parent = NULL);
AirspyThread(struct airspy_device* dev, SampleSinkFifo* sampleFifo, QObject* parent = NULL);
~AirspyThread();
void startWork();
@@ -47,7 +48,7 @@ private:
struct airspy_device* m_dev;
qint16 m_buf[2*AIRSPY_BLOCKSIZE];
SampleVector m_convertBuffer;
SampleFifo* m_sampleFifo;
SampleSinkFifo* m_sampleFifo;
int m_samplerate;
unsigned int m_log2Decim;