1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

Interferometer: renamed DownSampleChannelizer to (new) DownChannelizer

This commit is contained in:
f4exb
2019-12-13 15:39:53 +01:00
parent 3264a12dc4
commit 0d57046c53
2 changed files with 4 additions and 4 deletions
@@ -18,7 +18,7 @@
#include <QMutexLocker>
#include <QDebug>
#include "dsp/downsamplechannelizer.h"
#include "dsp/downchannelizer.h"
#include "dsp/basebandsamplesink.h"
#include "dsp/dspcommands.h"
@@ -41,7 +41,7 @@ InterferometerBaseband::InterferometerBaseband(int fftSize) :
for (int i = 0; i < 2; i++)
{
m_sinks[i].setStreamIndex(i);
m_channelizers[i] = new DownSampleChannelizer(&m_sinks[i]);
m_channelizers[i] = new DownChannelizer(&m_sinks[i]);
m_sizes[i] = 0;
}