2018-02-22 16:52:49 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2018 F4HKW //
|
|
|
|
// for F4EXB / SDRAngel //
|
|
|
|
// using LeanSDR Framework (C) 2016 F4DAV //
|
|
|
|
// //
|
|
|
|
// 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_DATVDEMOD_H
|
|
|
|
#define INCLUDE_DATVDEMOD_H
|
|
|
|
|
|
|
|
class DeviceSourceAPI;
|
|
|
|
class ThreadedBasebandSampleSink;
|
|
|
|
class DownChannelizer;
|
|
|
|
|
|
|
|
#define rfFilterFftLength 1024
|
|
|
|
|
|
|
|
#ifndef LEANSDR_FRAMEWORK
|
|
|
|
#define LEANSDR_FRAMEWORK
|
|
|
|
|
|
|
|
//LeanSDR
|
|
|
|
|
|
|
|
#include "leansdr/framework.h"
|
|
|
|
#include "leansdr/generic.h"
|
|
|
|
#include "leansdr/dsp.h"
|
|
|
|
#include "leansdr/sdr.h"
|
|
|
|
#include "leansdr/dvb.h"
|
|
|
|
#include "leansdr/rs.h"
|
|
|
|
#include "leansdr/filtergen.h"
|
|
|
|
|
|
|
|
#include "leansdr/hdlc.h"
|
|
|
|
#include "leansdr/iess.h"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "datvconstellation.h"
|
|
|
|
#include "datvvideoplayer.h"
|
|
|
|
|
|
|
|
#include "channel/channelsinkapi.h"
|
2018-03-10 19:00:27 -05:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
|
|
|
#include "dsp/devicesamplesource.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
|
|
|
#include "dsp/downchannelizer.h"
|
|
|
|
#include "dsp/fftfilt.h"
|
2018-02-22 16:52:49 -05:00
|
|
|
#include "dsp/nco.h"
|
|
|
|
#include "dsp/interpolator.h"
|
|
|
|
#include "dsp/movingaverage.h"
|
|
|
|
#include "dsp/agc.h"
|
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
#include "util/message.h"
|
2018-03-10 17:01:03 -05:00
|
|
|
#include "util/movingaverage.h"
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
#include "datvideostream.h"
|
|
|
|
#include "datvideorender.h"
|
|
|
|
|
2018-03-10 19:00:27 -05:00
|
|
|
#include <QMutex>
|
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
enum DATVModulation { BPSK, QPSK, PSK8, APSK16, APSK32, APSK64E, QAM16, QAM64, QAM256 };
|
|
|
|
enum dvb_version { DVB_S, DVB_S2 };
|
|
|
|
enum dvb_sampler { SAMP_NEAREST, SAMP_LINEAR, SAMP_RRC };
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-03-03 22:00:02 -05:00
|
|
|
inline int decimation(float Fin, float Fout) { int d = Fin / Fout; return std::max(d, 1); }
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
struct config
|
2018-02-24 18:07:08 -05:00
|
|
|
{
|
2018-02-25 19:04:45 -05:00
|
|
|
dvb_version standard;
|
|
|
|
dvb_sampler sampler;
|
|
|
|
|
|
|
|
int buf_factor; // Buffer sizing
|
|
|
|
float Fs; // Sampling frequency (Hz)
|
|
|
|
float Fderot; // Shift the signal (Hz). Note: Ftune is faster
|
|
|
|
int anf; // Number of auto notch filters
|
|
|
|
bool cnr; // Measure CNR
|
|
|
|
unsigned int decim; // Decimation, 0=auto
|
|
|
|
float Fm; // QPSK symbol rate (Hz)
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::cstln_lut<256>::predef constellation;
|
|
|
|
leansdr::code_rate fec;
|
2018-02-25 19:04:45 -05:00
|
|
|
float Ftune; // Bias frequency for the QPSK demodulator (Hz)
|
|
|
|
bool allow_drift;
|
|
|
|
bool fastlock;
|
|
|
|
bool viterbi;
|
|
|
|
bool hard_metric;
|
|
|
|
bool resample;
|
|
|
|
float resample_rej; // Approx. filter rejection in dB
|
|
|
|
int rrc_steps; // Discrete steps between symbols, 0=auto
|
|
|
|
float rrc_rej; // Approx. RRC filter rejection in dB
|
|
|
|
float rolloff; // Roll-off 0..1
|
|
|
|
bool hdlc; // Expect HDLC frames instead of MPEG packets
|
|
|
|
bool packetized; // Output frames with 16-bit BE length
|
|
|
|
float Finfo; // Desired refresh rate on fd_info (Hz)
|
|
|
|
|
|
|
|
config() :
|
|
|
|
standard(DVB_S),
|
|
|
|
sampler(SAMP_LINEAR),
|
|
|
|
buf_factor(4),
|
|
|
|
Fs(2.4e6),
|
|
|
|
Fderot(0),
|
2018-03-03 22:00:02 -05:00
|
|
|
anf(0),
|
2018-02-25 19:04:45 -05:00
|
|
|
cnr(false),
|
|
|
|
decim(0),
|
|
|
|
Fm(2e6),
|
2018-03-03 22:00:02 -05:00
|
|
|
constellation(leansdr::cstln_lut<256>::QPSK),
|
|
|
|
fec(leansdr::FEC12),
|
2018-02-25 19:04:45 -05:00
|
|
|
Ftune(0),
|
|
|
|
allow_drift(false),
|
|
|
|
fastlock(true),
|
|
|
|
viterbi(false),
|
|
|
|
hard_metric(false),
|
|
|
|
resample(false),
|
|
|
|
resample_rej(10),
|
|
|
|
rrc_steps(0),
|
|
|
|
rrc_rej(10),
|
|
|
|
rolloff(0.35),
|
|
|
|
hdlc(false),
|
|
|
|
packetized(false),
|
|
|
|
Finfo(5)
|
|
|
|
{
|
|
|
|
}
|
2018-02-22 16:52:49 -05:00
|
|
|
};
|
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
|
2018-02-22 16:52:49 -05:00
|
|
|
struct DATVConfig
|
|
|
|
{
|
|
|
|
int intMsps;
|
|
|
|
int intRFBandwidth;
|
|
|
|
int intCenterFrequency;
|
|
|
|
dvb_version enmStandard;
|
|
|
|
DATVModulation enmModulation;
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::code_rate enmFEC;
|
2018-02-22 16:52:49 -05:00
|
|
|
int intSampleRate;
|
|
|
|
int intSymbolRate;
|
|
|
|
int intNotchFilters;
|
|
|
|
bool blnAllowDrift;
|
|
|
|
bool blnFastLock;
|
2018-02-25 19:04:45 -05:00
|
|
|
dvb_sampler enmFilter;
|
2018-02-22 16:52:49 -05:00
|
|
|
bool blnHardMetric;
|
2018-02-25 19:04:45 -05:00
|
|
|
float fltRollOff;
|
2018-02-22 16:52:49 -05:00
|
|
|
bool blnViterbi;
|
2018-02-25 19:04:45 -05:00
|
|
|
int intExcursion;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
DATVConfig() :
|
2018-02-25 19:04:45 -05:00
|
|
|
intMsps(1024000),
|
|
|
|
intRFBandwidth(1024000),
|
|
|
|
intCenterFrequency(0),
|
|
|
|
enmStandard(DVB_S),
|
|
|
|
enmModulation(BPSK),
|
2018-03-03 22:00:02 -05:00
|
|
|
enmFEC(leansdr::FEC12),
|
2018-02-25 19:04:45 -05:00
|
|
|
intSampleRate(1024000),
|
|
|
|
intSymbolRate(250000),
|
|
|
|
intNotchFilters(1),
|
|
|
|
blnAllowDrift(false),
|
|
|
|
blnFastLock(false),
|
|
|
|
enmFilter(SAMP_LINEAR),
|
|
|
|
blnHardMetric(false),
|
|
|
|
fltRollOff(0.35),
|
|
|
|
blnViterbi(false),
|
|
|
|
intExcursion(10)
|
2018-02-22 16:52:49 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
|
|
|
|
class DATVDemod : public BasebandSampleSink, public ChannelSinkAPI
|
2018-02-22 16:52:49 -05:00
|
|
|
{
|
2018-02-25 19:04:45 -05:00
|
|
|
Q_OBJECT
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
DATVDemod(DeviceSourceAPI *);
|
|
|
|
~DATVDemod();
|
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
virtual void destroy() { delete this; }
|
|
|
|
virtual void getIdentifier(QString& id) { id = objectName(); }
|
|
|
|
virtual void getTitle(QString& title) { title = objectName(); }
|
|
|
|
virtual qint64 getCenterFrequency() const { return m_objRunning.intCenterFrequency; }
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
virtual QByteArray serialize() const { return QByteArray(); }
|
2018-11-12 18:45:03 -05:00
|
|
|
virtual bool deserialize(const QByteArray& data) { (void) data; return false; }
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
void configure(
|
2018-02-25 19:04:45 -05:00
|
|
|
MessageQueue* objMessageQueue,
|
|
|
|
int intRFBandwidth,
|
|
|
|
int intCenterFrequency,
|
|
|
|
dvb_version enmStandard,
|
|
|
|
DATVModulation enmModulation,
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::code_rate enmFEC,
|
2018-02-25 19:04:45 -05:00
|
|
|
int intSymbolRate,
|
|
|
|
int intNotchFilters,
|
|
|
|
bool blnAllowDrift,
|
|
|
|
bool blnFastLock,
|
|
|
|
dvb_sampler enmFilter,
|
|
|
|
bool blnHardMetric,
|
|
|
|
float fltRollOff,
|
|
|
|
bool blnViterbi,
|
|
|
|
int intfltExcursion);
|
|
|
|
|
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-03-11 11:39:02 -04:00
|
|
|
bool SetTVScreen(TVScreen *objScreen);
|
2018-02-22 16:52:49 -05:00
|
|
|
DATVideostream * SetVideoRender(DATVideoRender *objScreen);
|
|
|
|
|
|
|
|
bool PlayVideo(bool blnStartStop);
|
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
void InitDATVParameters(
|
2018-02-25 19:04:45 -05:00
|
|
|
int intMsps,
|
|
|
|
int intRFBandwidth,
|
|
|
|
int intCenterFrequency,
|
|
|
|
dvb_version enmStandard,
|
|
|
|
DATVModulation enmModulation,
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::code_rate enmFEC,
|
2018-02-25 19:04:45 -05:00
|
|
|
int intSampleRate,
|
|
|
|
int intSymbolRate,
|
|
|
|
int intNotchFilters,
|
|
|
|
bool blnAllowDrift,
|
|
|
|
bool blnFastLock,
|
|
|
|
dvb_sampler enmFilter,
|
|
|
|
bool blnHardMetric,
|
|
|
|
float fltRollOff,
|
|
|
|
bool blnViterbi,
|
|
|
|
int intEExcursion);
|
|
|
|
|
|
|
|
void CleanUpDATVFramework(bool blnRelease);
|
2018-02-22 16:52:49 -05:00
|
|
|
int GetSampleRate();
|
|
|
|
void InitDATVFramework();
|
2018-03-10 17:01:03 -05:00
|
|
|
double getMagSq() const { return m_objMagSqAverage; } //!< Beware this is scaled to 2^30
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
static const QString m_channelIdURI;
|
|
|
|
static const QString m_channelId;
|
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
|
|
|
|
class MsgConfigureChannelizer : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getCenterFrequency() const { return m_centerFrequency; }
|
|
|
|
|
|
|
|
static MsgConfigureChannelizer* create(int centerFrequency)
|
|
|
|
{
|
|
|
|
return new MsgConfigureChannelizer(centerFrequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_centerFrequency;
|
|
|
|
|
|
|
|
MsgConfigureChannelizer(int centerFrequency) :
|
|
|
|
Message(),
|
|
|
|
m_centerFrequency(centerFrequency)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
private:
|
2018-02-25 19:04:45 -05:00
|
|
|
class MsgConfigureDATVDemod : public Message
|
2018-02-22 16:52:49 -05:00
|
|
|
{
|
2018-02-25 19:04:45 -05:00
|
|
|
MESSAGE_CLASS_DECLARATION
|
2018-02-24 18:07:08 -05:00
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
public:
|
|
|
|
static MsgConfigureDATVDemod* create(
|
2018-02-24 18:07:08 -05:00
|
|
|
int intRFBandwidth,
|
|
|
|
int intCenterFrequency,
|
|
|
|
dvb_version enmStandard,
|
|
|
|
DATVModulation enmModulation,
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::code_rate enmFEC,
|
2018-02-24 18:07:08 -05:00
|
|
|
int intSymbolRate,
|
|
|
|
int intNotchFilters,
|
|
|
|
bool blnAllowDrift,
|
|
|
|
bool blnFastLock,
|
2018-02-25 19:04:45 -05:00
|
|
|
dvb_sampler enmFilter,
|
2018-02-24 18:07:08 -05:00
|
|
|
bool blnHardMetric,
|
2018-02-25 19:04:45 -05:00
|
|
|
float fltRollOff,
|
|
|
|
bool blnViterbi,
|
|
|
|
int intExcursion)
|
|
|
|
{
|
|
|
|
return new MsgConfigureDATVDemod(intRFBandwidth,intCenterFrequency,enmStandard, enmModulation, enmFEC, intSymbolRate, intNotchFilters, blnAllowDrift,blnFastLock,enmFilter,blnHardMetric,fltRollOff, blnViterbi, intExcursion);
|
|
|
|
}
|
|
|
|
|
|
|
|
DATVConfig m_objMsgConfig;
|
|
|
|
|
|
|
|
private:
|
|
|
|
MsgConfigureDATVDemod(
|
|
|
|
int intRFBandwidth,
|
|
|
|
int intCenterFrequency,
|
|
|
|
dvb_version enmStandard,
|
|
|
|
DATVModulation enmModulation,
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::code_rate enmFEC,
|
2018-02-25 19:04:45 -05:00
|
|
|
int intSymbolRate,
|
|
|
|
int intNotchFilters,
|
|
|
|
bool blnAllowDrift,
|
|
|
|
bool blnFastLock,
|
|
|
|
dvb_sampler enmFilter,
|
|
|
|
bool blnHardMetric,
|
|
|
|
float fltRollOff,
|
|
|
|
bool blnViterbi,
|
|
|
|
int intExcursion) :
|
2018-02-24 18:07:08 -05:00
|
|
|
Message()
|
2018-02-25 19:04:45 -05:00
|
|
|
{
|
|
|
|
m_objMsgConfig.intRFBandwidth = intRFBandwidth;
|
|
|
|
m_objMsgConfig.intCenterFrequency = intCenterFrequency;
|
|
|
|
m_objMsgConfig.enmStandard = enmStandard;
|
|
|
|
m_objMsgConfig.enmModulation = enmModulation;
|
|
|
|
m_objMsgConfig.enmFEC = enmFEC;
|
|
|
|
m_objMsgConfig.intSymbolRate = intSymbolRate;
|
|
|
|
m_objMsgConfig.intNotchFilters = intNotchFilters;
|
|
|
|
m_objMsgConfig.blnAllowDrift = blnAllowDrift;
|
|
|
|
m_objMsgConfig.blnFastLock = blnFastLock;
|
|
|
|
m_objMsgConfig.enmFilter= enmFilter;
|
|
|
|
m_objMsgConfig.blnHardMetric = blnHardMetric;
|
|
|
|
m_objMsgConfig.fltRollOff = fltRollOff;
|
|
|
|
m_objMsgConfig.blnViterbi = blnViterbi;
|
|
|
|
m_objMsgConfig.intExcursion = intExcursion;
|
|
|
|
}
|
2018-02-22 16:52:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
unsigned long m_lngExpectedReadIQ;
|
|
|
|
unsigned long m_lngReadIQ;
|
|
|
|
|
|
|
|
//************** LEANDBV Parameters **************
|
|
|
|
|
|
|
|
unsigned long BUF_BASEBAND;
|
|
|
|
unsigned long BUF_SYMBOLS;
|
|
|
|
unsigned long BUF_BYTES;
|
|
|
|
unsigned long BUF_MPEGBYTES;
|
|
|
|
unsigned long BUF_PACKETS;
|
|
|
|
unsigned long BUF_SLOW;
|
|
|
|
|
|
|
|
//************** LEANDBV Scheduler ***************
|
|
|
|
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::scheduler * m_objScheduler;
|
2018-02-22 16:52:49 -05:00
|
|
|
struct config m_objCfg;
|
|
|
|
|
|
|
|
bool m_blnDVBInitialized;
|
|
|
|
bool m_blnNeedConfigUpdate;
|
|
|
|
|
|
|
|
//LeanSDR Pipe Buffer
|
|
|
|
// INPUT
|
|
|
|
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_rawiq;
|
|
|
|
leansdr::pipewriter<leansdr::cf32> *p_rawiq_writer;
|
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_preprocessed;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// NOTCH FILTER
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::auto_notch<leansdr::f32> *r_auto_notch;
|
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_autonotched;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// FREQUENCY CORRECTION : DEROTATOR
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_derot;
|
|
|
|
leansdr::rotator<leansdr::f32> *r_derot;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// CNR ESTIMATION
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::f32> *p_cnr;
|
|
|
|
leansdr::cnr_fft<leansdr::f32> *r_cnr;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
//FILTERING
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::fir_filter<leansdr::cf32,float> *r_resample;
|
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_resampled;
|
2018-02-22 16:52:49 -05:00
|
|
|
float *coeffs;
|
|
|
|
int ncoeffs;
|
|
|
|
|
|
|
|
// OUTPUT PREPROCESSED DATA
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::sampler_interface<leansdr::f32> *sampler;
|
2018-02-22 16:52:49 -05:00
|
|
|
float *coeffs_sampler;
|
|
|
|
int ncoeffs_sampler;
|
|
|
|
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::softsymbol> *p_symbols;
|
|
|
|
leansdr::pipebuf<leansdr::f32> *p_freq;
|
|
|
|
leansdr::pipebuf<leansdr::f32> *p_ss;
|
|
|
|
leansdr::pipebuf<leansdr::f32> *p_mer;
|
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_sampled;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
//DECIMATION
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::cf32> *p_decimated;
|
|
|
|
leansdr::decimator<leansdr::cf32> *p_decim;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
//PROCESSED DATA MONITORING
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::file_writer<leansdr::cf32> *r_ppout;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
//GENERIC CONSTELLATION RECEIVER
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::cstln_receiver<leansdr::f32> *m_objDemodulator;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// DECONVOLUTION AND SYNCHRONIZATION
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::u8> *p_bytes;
|
|
|
|
leansdr::deconvol_sync_simple *r_deconv;
|
|
|
|
leansdr::viterbi_sync *r;
|
|
|
|
leansdr::pipebuf<leansdr::u8> *p_descrambled;
|
|
|
|
leansdr::pipebuf<leansdr::u8> *p_frames;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::etr192_descrambler * r_etr192_descrambler;
|
|
|
|
leansdr::hdlc_sync *r_sync;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::u8> *p_mpegbytes;
|
|
|
|
leansdr::pipebuf<int> *p_lock;
|
|
|
|
leansdr::pipebuf<leansdr::u32> *p_locktime;
|
|
|
|
leansdr::mpeg_sync<leansdr::u8, 0> *r_sync_mpeg;
|
2018-02-25 19:04:45 -05:00
|
|
|
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// DEINTERLEAVING
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::rspacket<leansdr::u8> > *p_rspackets;
|
|
|
|
leansdr::deinterleaver<leansdr::u8> *r_deinter;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// REED-SOLOMON
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<int> *p_vbitcount;
|
|
|
|
leansdr::pipebuf<int> *p_verrcount;
|
|
|
|
leansdr::pipebuf<leansdr::tspacket> *p_rtspackets;
|
|
|
|
leansdr::rs_decoder<leansdr::u8, 0> *r_rsdec;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// BER ESTIMATION
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<float> *p_vber;
|
|
|
|
leansdr::rate_estimator<float> *r_vber;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
// DERANDOMIZATION
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::pipebuf<leansdr::tspacket> *p_tspackets;
|
|
|
|
leansdr::derandomizer *r_derand;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-25 19:04:45 -05:00
|
|
|
|
2018-02-22 16:52:49 -05:00
|
|
|
//OUTPUT
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::file_writer<leansdr::tspacket> *r_stdout;
|
|
|
|
leansdr::datvvideoplayer<leansdr::tspacket> *r_videoplayer;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
//CONSTELLATION
|
2018-03-03 22:00:02 -05:00
|
|
|
leansdr::datvconstellation<leansdr::f32> *r_scope_symbols;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
DeviceSourceAPI* m_deviceAPI;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
|
|
DownChannelizer* m_channelizer;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
//*************** DATV PARAMETERS ***************
|
2018-03-11 11:39:02 -04:00
|
|
|
TVScreen * m_objRegisteredTVScreen;
|
2018-02-24 18:07:08 -05:00
|
|
|
DATVideoRender * m_objRegisteredVideoRender;
|
|
|
|
DATVideostream * m_objVideoStream;
|
|
|
|
DATVideoRenderThread * m_objRenderThread;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
fftfilt * m_objRFFilter;
|
|
|
|
NCO m_objNCO;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
bool m_blnInitialized;
|
|
|
|
bool m_blnRenderingVideo;
|
2018-02-25 19:04:45 -05:00
|
|
|
bool m_blnStartStopVideo;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
2018-02-24 18:07:08 -05:00
|
|
|
DATVModulation m_enmModulation;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
DATVConfig m_objRunning;
|
2018-03-10 17:01:03 -05:00
|
|
|
MovingAverageUtil<double, double, 32> m_objMagSqAverage;
|
2018-02-22 16:52:49 -05:00
|
|
|
|
|
|
|
QMutex m_objSettingsMutex;
|
|
|
|
|
|
|
|
void ApplySettings();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_DATVDEMOD_H
|