2016-06-19 03:56:49 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-06-09 07:58:27 -04:00
|
|
|
#ifndef PLUGINS_SAMPLESOURCE_SDRDAEMONSOURCE_SDRDAEMONSOURCEBUFFER_H_
|
|
|
|
#define PLUGINS_SAMPLESOURCE_SDRDAEMONSOURCE_SDRDAEMONSOURCEBUFFER_H_
|
2016-06-19 03:56:49 -04:00
|
|
|
|
|
|
|
#include <QString>
|
2016-06-22 18:58:07 -04:00
|
|
|
#include <QDebug>
|
2016-06-19 03:56:49 -04:00
|
|
|
#include <cstdlib>
|
2016-06-19 18:45:24 -04:00
|
|
|
#include "cm256.h"
|
|
|
|
#include "util/movingaverage.h"
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
#define SDRDAEMONSOURCE_UDPSIZE 512 // UDP payload size
|
|
|
|
#define SDRDAEMONSOURCE_NBORIGINALBLOCKS 128 // number of sample blocks per frame excluding FEC blocks
|
|
|
|
#define SDRDAEMONSOURCE_NBDECODERSLOTS 16 // power of two sub multiple of uint16_t size. A too large one is superfluous.
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
class SDRdaemonSourceBuffer
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
#pragma pack(push, 1)
|
2016-06-19 18:45:24 -04:00
|
|
|
struct MetaDataFEC
|
|
|
|
{
|
|
|
|
uint32_t m_centerFrequency; //!< 4 center frequency in kHz
|
|
|
|
uint32_t m_sampleRate; //!< 8 sample rate in Hz
|
|
|
|
uint8_t m_sampleBytes; //!< 9 MSB(4): indicators, LSB(4) number of bytes per sample
|
|
|
|
uint8_t m_sampleBits; //!< 10 number of effective bits per sample
|
|
|
|
uint8_t m_nbOriginalBlocks; //!< 11 number of blocks with original (protected) data
|
|
|
|
uint8_t m_nbFECBlocks; //!< 12 number of blocks carrying FEC
|
|
|
|
uint32_t m_tv_sec; //!< 16 seconds of timestamp at start time of super-frame processing
|
|
|
|
uint32_t m_tv_usec; //!< 20 microseconds of timestamp at start time of super-frame processing
|
2016-07-24 13:50:51 -04:00
|
|
|
uint32_t m_crc32; //!< 24 CRC32 of the above
|
2016-06-19 18:45:24 -04:00
|
|
|
|
|
|
|
bool operator==(const MetaDataFEC& rhs)
|
|
|
|
{
|
2018-04-04 17:39:31 -04:00
|
|
|
return (memcmp((const char *) this, (const char *) &rhs, 12) == 0); // Only the 12 first bytes are relevant
|
2016-06-19 18:45:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void init()
|
|
|
|
{
|
2018-04-04 17:39:31 -04:00
|
|
|
memset((char *) this, 0, sizeof(MetaDataFEC));
|
2016-06-19 18:45:24 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-22 18:07:38 -05:00
|
|
|
struct SDRdaemonSample
|
2016-06-19 18:45:24 -04:00
|
|
|
{
|
2016-07-20 02:54:31 -04:00
|
|
|
int16_t i;
|
|
|
|
int16_t q;
|
2016-06-19 18:45:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Header
|
|
|
|
{
|
|
|
|
uint16_t frameIndex;
|
|
|
|
uint8_t blockIndex;
|
|
|
|
uint8_t filler;
|
|
|
|
};
|
|
|
|
|
2018-01-22 18:07:38 -05:00
|
|
|
static const int samplesPerBlock = (SDRDAEMONSOURCE_UDPSIZE - sizeof(Header)) / sizeof(SDRdaemonSample);
|
2017-06-09 08:14:32 -04:00
|
|
|
static const int framesSize = SDRDAEMONSOURCE_NBDECODERSLOTS * (SDRDAEMONSOURCE_NBORIGINALBLOCKS - 1) * (SDRDAEMONSOURCE_UDPSIZE - sizeof(Header));
|
2016-06-19 18:45:24 -04:00
|
|
|
|
|
|
|
struct ProtectedBlock
|
|
|
|
{
|
2018-01-22 18:07:38 -05:00
|
|
|
SDRdaemonSample samples[samplesPerBlock];
|
2016-06-19 18:45:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SuperBlock
|
|
|
|
{
|
|
|
|
Header header;
|
|
|
|
ProtectedBlock protectedBlock;
|
|
|
|
};
|
2016-06-19 03:56:49 -04:00
|
|
|
#pragma pack(pop)
|
|
|
|
|
2018-03-03 19:47:51 -05:00
|
|
|
SDRdaemonSourceBuffer();
|
2017-06-09 08:14:32 -04:00
|
|
|
~SDRdaemonSourceBuffer();
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
// R/W operations
|
2017-05-25 14:13:34 -04:00
|
|
|
void writeData(char *array); //!< Write data into buffer.
|
2016-07-06 20:36:44 -04:00
|
|
|
void writeData0(char *array, uint32_t length); //!< Write data into buffer.
|
2016-06-19 18:45:24 -04:00
|
|
|
uint8_t *readData(int32_t length); //!< Read data from buffer
|
|
|
|
|
|
|
|
// meta data
|
|
|
|
const MetaDataFEC& getCurrentMeta() const { return m_currentMeta; }
|
|
|
|
|
2016-07-24 06:53:39 -04:00
|
|
|
// samples timestamp
|
|
|
|
uint32_t getTVOutSec() const { return m_tvOut_sec; }
|
|
|
|
uint32_t getTVOutUsec() const { return m_tvOut_usec; }
|
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
// stats
|
2016-07-17 18:39:35 -04:00
|
|
|
|
|
|
|
int getCurNbBlocks() const { return m_curNbBlocks; }
|
2016-07-27 12:49:17 -04:00
|
|
|
int getCurOriginalBlocks() const { return m_curOriginalBlocks; }
|
2016-06-19 18:45:24 -04:00
|
|
|
int getCurNbRecovery() const { return m_curNbRecovery; }
|
|
|
|
float getAvgNbBlocks() const { return m_avgNbBlocks; }
|
2016-07-27 12:49:17 -04:00
|
|
|
float getAvgOriginalBlocks() const { return m_avgOrigBlocks; }
|
2016-06-19 18:45:24 -04:00
|
|
|
float getAvgNbRecovery() const { return m_avgNbRecovery; }
|
|
|
|
|
2016-07-17 18:39:35 -04:00
|
|
|
int getMinNbBlocks()
|
|
|
|
{
|
|
|
|
int minNbBlocks = m_minNbBlocks;
|
|
|
|
m_minNbBlocks = 256;
|
|
|
|
return minNbBlocks;
|
|
|
|
}
|
|
|
|
|
2016-07-27 12:49:17 -04:00
|
|
|
int getMinOriginalBlocks()
|
|
|
|
{
|
|
|
|
int minOriginalBlocks = m_minOriginalBlocks;
|
|
|
|
m_minOriginalBlocks = 128;
|
|
|
|
return minOriginalBlocks;
|
|
|
|
}
|
|
|
|
|
2016-07-17 18:39:35 -04:00
|
|
|
int getMaxNbRecovery()
|
|
|
|
{
|
|
|
|
int maxNbRecovery = m_maxNbRecovery;
|
|
|
|
m_maxNbRecovery = 0;
|
|
|
|
return maxNbRecovery;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool allFramesDecoded()
|
|
|
|
{
|
|
|
|
bool framesDecoded = m_framesDecoded;
|
|
|
|
m_framesDecoded = true;
|
|
|
|
return framesDecoded;
|
|
|
|
}
|
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
float getBufferLengthInSecs() const { return m_bufferLenSec; }
|
2016-07-12 21:31:19 -04:00
|
|
|
int32_t getRWBalanceCorrection() const { return m_balCorrection; }
|
2016-06-19 03:56:49 -04:00
|
|
|
|
|
|
|
/** Get buffer gauge value in % of buffer size ([-50:50])
|
|
|
|
* [-50:0] : write leads or read lags
|
|
|
|
* [0:50] : read leads or write lags
|
|
|
|
*/
|
|
|
|
inline int32_t getBufferGauge() const
|
|
|
|
{
|
2016-06-19 18:45:24 -04:00
|
|
|
if (m_framesNbBytes)
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
2016-06-19 18:45:24 -04:00
|
|
|
int32_t val = (m_wrDeltaEstimate * 100) / (int32_t) m_framesNbBytes;
|
2016-06-22 18:58:07 -04:00
|
|
|
int32_t ret = val < 0 ? -val - 50 : 50 -val;
|
|
|
|
return ret;
|
2016-06-19 03:56:49 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-21 19:10:58 -04:00
|
|
|
return 0; // default position
|
2016-06-19 03:56:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
static const int m_udpPayloadSize = SDRDAEMONSOURCE_UDPSIZE;
|
|
|
|
static const int m_nbOriginalBlocks = SDRDAEMONSOURCE_NBORIGINALBLOCKS;
|
2016-06-19 03:56:49 -04:00
|
|
|
static const int m_sampleSize;
|
|
|
|
static const int m_iqSampleSize;
|
|
|
|
|
|
|
|
private:
|
2017-06-09 08:14:32 -04:00
|
|
|
static const int nbDecoderSlots = SDRDAEMONSOURCE_NBDECODERSLOTS;
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
#pragma pack(push, 1)
|
|
|
|
struct BufferFrame
|
|
|
|
{
|
2016-06-19 19:32:32 -04:00
|
|
|
ProtectedBlock m_blocks[m_nbOriginalBlocks - 1];
|
2016-06-19 18:45:24 -04:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
struct DecoderSlot
|
|
|
|
{
|
2016-07-28 11:09:15 -04:00
|
|
|
ProtectedBlock m_blockZero; //!< First block of a frame. Has meta data.
|
2016-07-17 17:33:50 -04:00
|
|
|
ProtectedBlock m_originalBlocks[m_nbOriginalBlocks]; //!< Original blocks retrieved directly or by later FEC
|
|
|
|
ProtectedBlock m_recoveryBlocks[m_nbOriginalBlocks]; //!< Recovery blocks (FEC blocks) with max size
|
2016-07-23 13:59:42 -04:00
|
|
|
CM256::cm256_block m_cm256DescriptorBlocks[m_nbOriginalBlocks]; //!< CM256 decoder descriptors (block addresses and block indexes)
|
2016-07-17 17:33:50 -04:00
|
|
|
int m_blockCount; //!< number of blocks received for this frame
|
2016-07-06 21:49:47 -04:00
|
|
|
int m_originalCount; //!< number of original blocks received
|
|
|
|
int m_recoveryCount; //!< number of recovery blocks received
|
|
|
|
bool m_decoded; //!< true if decoded
|
|
|
|
bool m_metaRetrieved; //!< true if meta data (block zero) was retrieved
|
2016-06-19 18:45:24 -04:00
|
|
|
};
|
|
|
|
|
2016-07-17 17:33:50 -04:00
|
|
|
MetaDataFEC m_currentMeta; //!< Stored current meta data
|
2016-07-23 13:59:42 -04:00
|
|
|
CM256::cm256_encoder_params m_paramsCM256; //!< CM256 decoder parameters block
|
2016-06-19 18:45:24 -04:00
|
|
|
DecoderSlot m_decoderSlots[nbDecoderSlots]; //!< CM256 decoding control/buffer slots
|
|
|
|
BufferFrame m_frames[nbDecoderSlots]; //!< Samples buffer
|
|
|
|
int m_framesNbBytes; //!< Number of bytes in samples buffer
|
2016-07-05 18:43:38 -04:00
|
|
|
int m_decoderIndexHead; //!< index of the current head frame slot in decoding slots
|
2016-06-19 18:45:24 -04:00
|
|
|
int m_frameHead; //!< index of the current head frame sent
|
|
|
|
int m_curNbBlocks; //!< (stats) instantaneous number of blocks received
|
2016-07-17 18:39:35 -04:00
|
|
|
int m_minNbBlocks; //!< (stats) minimum number of blocks received since last poll
|
2016-07-27 12:49:17 -04:00
|
|
|
int m_curOriginalBlocks; //!< (stats) instantanous number of original blocks received
|
|
|
|
int m_minOriginalBlocks; //!< (stats) minimum number of original blocks received since last poll
|
2016-06-19 18:45:24 -04:00
|
|
|
int m_curNbRecovery; //!< (stats) instantaneous number of recovery blocks used
|
2016-07-17 18:39:35 -04:00
|
|
|
int m_maxNbRecovery; //!< (stats) maximum number of recovery blocks used since last poll
|
2017-11-05 19:02:20 -05:00
|
|
|
MovingAverageUtil<int, int, 10> m_avgNbBlocks; //!< (stats) average number of blocks received
|
|
|
|
MovingAverageUtil<int, int, 10> m_avgOrigBlocks; //!< (stats) average number of original blocks received
|
|
|
|
MovingAverageUtil<int, int, 10> m_avgNbRecovery; //!< (stats) average number of recovery blocks used
|
2016-07-17 18:39:35 -04:00
|
|
|
bool m_framesDecoded; //!< [stats] true if all frames were decoded since last poll
|
2016-06-19 18:45:24 -04:00
|
|
|
int m_readIndex; //!< current byte read index in frames buffer
|
|
|
|
int m_wrDeltaEstimate; //!< Sampled estimate of write to read indexes difference
|
2016-07-24 06:53:39 -04:00
|
|
|
uint32_t m_tvOut_sec; //!< Estimated returned samples timestamp (seconds)
|
|
|
|
uint32_t m_tvOut_usec; //!< Estimated returned samples timestamp (microseconds)
|
2016-07-12 21:31:19 -04:00
|
|
|
int m_readNbBytes; //!< Nominal number of bytes per read (50ms)
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
uint8_t* m_readBuffer; //!< Read buffer to hold samples when looping back to beginning of raw buffer
|
2017-05-25 14:13:34 -04:00
|
|
|
int m_readSize; //!< Read buffer size
|
2016-06-19 18:45:24 -04:00
|
|
|
|
|
|
|
float m_bufferLenSec;
|
|
|
|
|
2016-07-12 21:31:19 -04:00
|
|
|
int m_nbReads; //!< Number of buffer reads since start of auto R/W balance correction period
|
|
|
|
int m_nbWrites; //!< Number of buffer writes since start of auto R/W balance correction period
|
|
|
|
int m_balCorrection; //!< R/W balance correction in number of samples
|
|
|
|
int m_balCorrLimit; //!< Correction absolute value limit in number of samples
|
2016-07-23 13:59:42 -04:00
|
|
|
CM256 m_cm256; //!< CM256 library
|
2016-07-17 17:33:50 -04:00
|
|
|
bool m_cm256_OK; //!< CM256 library initialized OK
|
2016-07-12 21:31:19 -04:00
|
|
|
|
2016-07-28 11:09:15 -04:00
|
|
|
inline ProtectedBlock* storeOriginalBlock(int slotIndex, int blockIndex, const ProtectedBlock& protectedBlock)
|
|
|
|
{
|
|
|
|
if (blockIndex == 0) {
|
|
|
|
// m_decoderSlots[slotIndex].m_originalBlocks[0] = protectedBlock;
|
|
|
|
// return &m_decoderSlots[slotIndex].m_originalBlocks[0];
|
|
|
|
m_decoderSlots[slotIndex].m_blockZero = protectedBlock;
|
|
|
|
return &m_decoderSlots[slotIndex].m_blockZero;
|
|
|
|
} else {
|
|
|
|
// m_decoderSlots[slotIndex].m_originalBlocks[blockIndex] = protectedBlock;
|
|
|
|
// return &m_decoderSlots[slotIndex].m_originalBlocks[blockIndex];
|
|
|
|
m_frames[slotIndex].m_blocks[blockIndex - 1] = protectedBlock;
|
|
|
|
return &m_frames[slotIndex].m_blocks[blockIndex - 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ProtectedBlock& getOriginalBlock(int slotIndex, int blockIndex)
|
|
|
|
{
|
|
|
|
if (blockIndex == 0) {
|
|
|
|
// return m_decoderSlots[slotIndex].m_originalBlocks[0];
|
|
|
|
return m_decoderSlots[slotIndex].m_blockZero;
|
|
|
|
} else {
|
|
|
|
// return m_decoderSlots[slotIndex].m_originalBlocks[blockIndex];
|
|
|
|
return m_frames[slotIndex].m_blocks[blockIndex - 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline MetaDataFEC *getMetaData(int slotIndex)
|
|
|
|
{
|
|
|
|
// return (MetaDataFEC *) &m_decoderSlots[slotIndex].m_originalBlocks[0];
|
|
|
|
return (MetaDataFEC *) &m_decoderSlots[slotIndex].m_blockZero;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void resetOriginalBlocks(int slotIndex)
|
|
|
|
{
|
|
|
|
// memset((void *) m_decoderSlots[slotIndex].m_originalBlocks, 0, m_nbOriginalBlocks * sizeof(ProtectedBlock));
|
|
|
|
memset((void *) &m_decoderSlots[slotIndex].m_blockZero, 0, sizeof(ProtectedBlock));
|
|
|
|
memset((void *) m_frames[slotIndex].m_blocks, 0, (m_nbOriginalBlocks - 1) * sizeof(ProtectedBlock));
|
|
|
|
}
|
|
|
|
|
2016-06-19 18:45:24 -04:00
|
|
|
void initDecodeAllSlots();
|
|
|
|
void initReadIndex();
|
2016-07-12 21:31:19 -04:00
|
|
|
void rwCorrectionEstimate(int slotIndex);
|
2016-07-05 20:54:01 -04:00
|
|
|
void checkSlotData(int slotIndex);
|
2016-06-19 18:45:24 -04:00
|
|
|
void initDecodeSlot(int slotIndex);
|
|
|
|
|
|
|
|
static void printMeta(const QString& header, MetaDataFEC *metaData);
|
2016-06-19 03:56:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-09 07:58:27 -04:00
|
|
|
#endif /* PLUGINS_SAMPLESOURCE_SDRDAEMONSOURCE_SDRDAEMONSOURCEBUFFER_H_ */
|