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

Interferometer: use new signature for pull virtual method

This commit is contained in:
f4exb
2019-10-22 18:38:36 +02:00
parent 65f1e2a554
commit d9a9ae90c8
2 changed files with 4 additions and 3 deletions
@@ -101,9 +101,10 @@ void Interferometer::feed(const SampleVector::const_iterator& begin, const Sampl
m_sink->feed(begin, end, sinkIndex);
}
void Interferometer::pull(Sample& sample, unsigned int sourceIndex)
void Interferometer::pull(const SampleVector::const_iterator& begin, unsigned int nbSamples, unsigned int sourceIndex)
{
(void) sample;
(void) begin;
(void) nbSamples;
(void) sourceIndex;
}