diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/FIRFilter.h | 1 | ||||
-rw-r--r-- | src/TII.cpp | 24 | ||||
-rw-r--r-- | src/TimestampDecoder.h | 3 |
3 files changed, 21 insertions, 7 deletions
diff --git a/src/FIRFilter.h b/src/FIRFilter.h index fb6b4d6..a63bfb9 100644 --- a/src/FIRFilter.h +++ b/src/FIRFilter.h @@ -53,6 +53,7 @@ class FIRFilter : public PipelinedModCodec, public RemoteControllable { public: FIRFilter(const std::string& taps_file); + virtual ~FIRFilter() = default; const char* name() { return "FIRFilter"; } diff --git a/src/TII.cpp b/src/TII.cpp index 8a8bd86..4710ed4 100644 --- a/src/TII.cpp +++ b/src/TII.cpp @@ -197,16 +197,30 @@ int TII::process(Buffer* dataIn, Buffer* dataOut) complexf* in = reinterpret_cast<complexf*>(dataIn->getData()); complexf* out = reinterpret_cast<complexf*>(dataOut->getData()); + if ((m_enabled_carriers.size() % 2) != 0) { + throw std::logic_error("odd number of enabled carriers"); + } + + /* Normalise the TII carrier power according to ETSI TR 101 496-3 + * Clause 5.4.2.2 Paragraph 7: + * + * > The ratio of carriers in a TII symbol to a normal DAB symbol + * > is 1:48 for all Modes, so that the signal power in a TII symbol is + * > 16 dB below the signal power of the other symbols. + * + * We need to normalise to the square root of 48 because we touch I and + * Q separately. + */ + const float normalise_factor = 0.14433756729740644112f; // = 1/sqrt(48) + for (size_t i = 0; i < m_enabled_carriers.size(); i+=2) { - //BAD implementation: - // setting exactly the same phase of the signal for lower adjacent - // frequency + // See header file for an explanation of the old variant if (m_enabled_carriers[i]) { - out[i] = m_conf.old_variant ? in[i+1] : in[i]; + out[i] = normalise_factor * (m_conf.old_variant ? in[i+1] : in[i]); } if (m_enabled_carriers[i+1]) { - out[i+1] = in[i+1]; + out[i+1] = normalise_factor * in[i+1]; } } } diff --git a/src/TimestampDecoder.h b/src/TimestampDecoder.h index 1ef493e..2272fe0 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -69,7 +69,7 @@ struct frame_timestamp this->timestamp_sec += lrintf(offset_secs); this->timestamp_pps += lrintf(offset_pps * 16384000.0); - while (this->timestamp_pps > 16384000) + while (this->timestamp_pps >= 16384000) { this->timestamp_pps -= 16384000; this->timestamp_sec += 1; @@ -228,4 +228,3 @@ class TimestampDecoder : public RemoteControllable }; - |