mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 05:11:49 -05:00
BasebandSampleSource: disambiguate handleWriteToFifo
This commit is contained in:
parent
8123f128b2
commit
e97405ec16
@ -25,7 +25,7 @@ BasebandSampleSource::BasebandSampleSource() :
|
|||||||
m_deviceSampleFifo(0)
|
m_deviceSampleFifo(0)
|
||||||
{
|
{
|
||||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
||||||
connect(&m_sampleFifo, SIGNAL(dataWrite(int)), this, SLOT(handleWriteToFifo(int)));
|
connect(&m_sampleFifo, SIGNAL(dataWrite(int)), this, SLOT(handleWriteToSampleFifo(int)));
|
||||||
}
|
}
|
||||||
|
|
||||||
BasebandSampleSource::~BasebandSampleSource()
|
BasebandSampleSource::~BasebandSampleSource()
|
||||||
@ -45,7 +45,7 @@ void BasebandSampleSource::handleInputMessages()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BasebandSampleSource::handleWriteToFifo(int nbSamples)
|
void BasebandSampleSource::handleWriteToSampleFifo(int nbSamples)
|
||||||
{
|
{
|
||||||
handleWriteToFifo(&m_sampleFifo, nbSamples);
|
handleWriteToFifo(&m_sampleFifo, nbSamples);
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ protected:
|
|||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void handleInputMessages();
|
void handleInputMessages();
|
||||||
void handleWriteToFifo(int nbSamples);
|
void handleWriteToSampleFifo(int nbSamples);
|
||||||
void handleWriteToDeviceFifo(int nbSamples);
|
void handleWriteToDeviceFifo(int nbSamples);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user