1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 16:34:45 -04:00

Windows: MSVC2017: changes in sdrbase (2)

This commit is contained in:
f4exb
2018-11-12 16:58:20 +01:00
parent f97728c4e9
commit 70a4db39c0
9 changed files with 186 additions and 96 deletions
+2 -1
View File
@@ -111,8 +111,9 @@ void ThreadedBasebandSampleSink::stop()
m_thread->wait();
}
void ThreadedBasebandSampleSink::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly __attribute__((unused)))
void ThreadedBasebandSampleSink::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly)
{
(void) positiveOnly;
//m_sampleSink->feed(begin, end, positiveOnly);
//m_sampleFifo.write(begin, end);
m_threadedBasebandSampleSinkFifo->writeToFifo(begin, end);