mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-07 17:16:02 -05:00
116 lines
3.3 KiB
C
116 lines
3.3 KiB
C
|
///////////////////////////////////////////////////////////////////////////////////
|
||
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
||
|
// written by Christian Daniel //
|
||
|
// //
|
||
|
// This program is free software; you can redistribute it and/or modify //
|
||
|
// it under the terms of the GNU General Public License as published by //
|
||
|
// the Free Software Foundation as version 3 of the License, or //
|
||
|
// //
|
||
|
// This program is distributed in the hope that it will be useful, //
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
||
|
// GNU General Public License V3 for more details. //
|
||
|
// //
|
||
|
// You should have received a copy of the GNU General Public License //
|
||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||
|
///////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef INCLUDE_CHANALYZER_H
|
||
|
#define INCLUDE_CHANALYZER_H
|
||
|
|
||
|
#include <vector>
|
||
|
#include "dsp/samplesink.h"
|
||
|
#include "dsp/nco.h"
|
||
|
#include "dsp/interpolator.h"
|
||
|
#include "dsp/fftfilt.h"
|
||
|
#include "audio/audiofifo.h"
|
||
|
#include "util/message.h"
|
||
|
|
||
|
#define ssbFftLen 1024
|
||
|
|
||
|
//class AudioFifo;
|
||
|
|
||
|
class ChannelAnalyzer : public SampleSink {
|
||
|
public:
|
||
|
ChannelAnalyzer(SampleSink* sampleSink);
|
||
|
~ChannelAnalyzer();
|
||
|
|
||
|
void configure(MessageQueue* messageQueue,
|
||
|
Real Bandwidth,
|
||
|
Real LowCutoff,
|
||
|
int spanLog2,
|
||
|
bool ssb);
|
||
|
|
||
|
void feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly);
|
||
|
void start();
|
||
|
void stop();
|
||
|
bool handleMessage(Message* cmd);
|
||
|
|
||
|
private:
|
||
|
class MsgConfigureChannelAnalyzer : public Message {
|
||
|
MESSAGE_CLASS_DECLARATION
|
||
|
|
||
|
public:
|
||
|
Real getBandwidth() const { return m_Bandwidth; }
|
||
|
Real getLoCutoff() const { return m_LowCutoff; }
|
||
|
int getSpanLog2() const { return m_spanLog2; }
|
||
|
bool getSSB() const { return m_ssb; }
|
||
|
|
||
|
static MsgConfigureChannelAnalyzer* create(Real Bandwidth,
|
||
|
Real LowCutoff,
|
||
|
int spanLog2,
|
||
|
bool ssb)
|
||
|
{
|
||
|
return new MsgConfigureChannelAnalyzer(Bandwidth, LowCutoff, spanLog2, ssb);
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
Real m_Bandwidth;
|
||
|
Real m_LowCutoff;
|
||
|
int m_spanLog2;
|
||
|
bool m_ssb;
|
||
|
|
||
|
MsgConfigureChannelAnalyzer(Real Bandwidth,
|
||
|
Real LowCutoff,
|
||
|
int spanLog2,
|
||
|
bool ssb) :
|
||
|
Message(),
|
||
|
m_Bandwidth(Bandwidth),
|
||
|
m_LowCutoff(LowCutoff),
|
||
|
m_spanLog2(spanLog2),
|
||
|
m_ssb(ssb)
|
||
|
{ }
|
||
|
};
|
||
|
|
||
|
//struct AudioSample {
|
||
|
// qint16 l;
|
||
|
// qint16 r;
|
||
|
//};
|
||
|
//typedef std::vector<AudioSample> AudioVector;
|
||
|
|
||
|
Real m_Bandwidth;
|
||
|
Real m_LowCutoff;
|
||
|
int m_spanLog2;
|
||
|
int m_undersampleCount;
|
||
|
int m_sampleRate;
|
||
|
int m_frequency;
|
||
|
bool m_usb;
|
||
|
bool m_ssb;
|
||
|
|
||
|
NCO m_nco;
|
||
|
NCO m_nco_test;
|
||
|
Interpolator m_interpolator;
|
||
|
Real m_sampleDistanceRemain;
|
||
|
fftfilt* SSBFilter;
|
||
|
fftfilt* DSBFilter;
|
||
|
|
||
|
SampleSink* m_sampleSink;
|
||
|
SampleVector m_sampleBuffer;
|
||
|
|
||
|
//AudioVector m_audioBuffer;
|
||
|
//uint m_audioBufferFill;
|
||
|
//AudioFifo* m_audioFifo;
|
||
|
};
|
||
|
|
||
|
#endif // INCLUDE_CHANALYZER_H
|