From 66c2acf2606877d00e056c1d1228b32d0a15c5bc Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 10 Dec 2019 15:47:32 +0100 Subject: Make EDI input TIST delay configurable --- src/ConfigParser.cpp | 8 ++++++-- src/input/Edi.cpp | 14 ++++++++++++-- src/input/Edi.h | 2 +- src/input/inputs.h | 2 ++ 4 files changed, 21 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp index 063e4ec..776ddc8 100644 --- a/src/ConfigParser.cpp +++ b/src/ConfigParser.cpp @@ -51,11 +51,12 @@ #include #include #include -#include +#include #include #include -#include #include +#include +#include #include using namespace std; @@ -1037,6 +1038,9 @@ static void setup_subchannel_from_ptree(shared_ptr& subchan, throw runtime_error("Subchannel with uid " + subchanuid + " has invalid buffer-management !"); } + const int32_t tist_delay = pt.get("tist-delay", 0); + subchan->input->setTistDelay(chrono::milliseconds(tist_delay)); + subchan->startAddress = 0; dabProtection* protection = &subchan->protection; diff --git a/src/input/Edi.cpp b/src/input/Edi.cpp index f4b5e25..b5301d2 100644 --- a/src/input/Edi.cpp +++ b/src/input/Edi.cpp @@ -62,6 +62,8 @@ Edi::Edi(const std::string& name, const dab_input_edi_config_t& config) : RC_ADD_PARAMETER(prebuffering, "Min buffer level before streaming starts [24ms frames]"); + + RC_ADD_PARAMETER(tistdelay, "TIST delay to add [ms]"); } Edi::~Edi() { @@ -209,7 +211,8 @@ size_t Edi::readFrame(uint8_t *buffer, size_t size, std::time_t seconds, int utc // difference between the input frame timestamp and the requested // timestamp. if (m_pending_sti_frame.timestamp.valid()) { - const auto ts_req = EdiDecoder::frame_timestamp_t::from_unix_epoch(seconds, utco, tsta); + auto ts_req = EdiDecoder::frame_timestamp_t::from_unix_epoch(seconds, utco, tsta); + ts_req += m_tist_delay; const double offset = m_pending_sti_frame.timestamp.diff_ms(ts_req); if (offset < 24e-3) { @@ -274,7 +277,8 @@ size_t Edi::readFrame(uint8_t *buffer, size_t size, std::time_t seconds, int utc return 0; } else { - const auto ts_req = EdiDecoder::frame_timestamp_t::from_unix_epoch(seconds, utco, tsta); + auto ts_req = EdiDecoder::frame_timestamp_t::from_unix_epoch(seconds, utco, tsta); + ts_req += m_tist_delay; const double offset = m_pending_sti_frame.timestamp.diff_ms(ts_req); if (offset > 24e-3) { @@ -384,6 +388,9 @@ void Edi::set_parameter(const std::string& parameter, const std::string& value) throw ParameterError("Invalid value for '" + parameter + "' in controllable " + get_rc_name()); } } + else if (parameter == "tistdelay") { + m_tist_delay = chrono::milliseconds(stoi(value)); + } else { throw ParameterError("Parameter '" + parameter + "' is not exported by controllable " + get_rc_name()); } @@ -408,6 +415,9 @@ const std::string Edi::get_parameter(const std::string& parameter) const break; } } + else if (parameter == "tistdelay") { + ss << m_tist_delay.count(); + } else { throw ParameterError("Parameter '" + parameter + "' is not exported by controllable " + get_rc_name()); } diff --git a/src/input/Edi.h b/src/input/Edi.h index ed4d7cf..a3b1d4d 100644 --- a/src/input/Edi.h +++ b/src/input/Edi.h @@ -97,7 +97,7 @@ class Edi : public InputBase, public RemoteControllable { std::atomic m_running = ATOMIC_VAR_INIT(false); ThreadsafeQueue m_frames; - // InputBase defines bufferManagement + // InputBase defines bufferManagement and tist delay // Used in timestamp-based buffer management EdiDecoder::sti_frame_t m_pending_sti_frame; diff --git a/src/input/inputs.h b/src/input/inputs.h index 5d4fc60..83cdbf2 100644 --- a/src/input/inputs.h +++ b/src/input/inputs.h @@ -83,6 +83,7 @@ class InputBase { virtual ~InputBase() {} + void setTistDelay(const std::chrono::milliseconds& ms) { m_tist_delay = ms; } void setBufferManagement(BufferManagement bm) { m_bufferManagement = bm; } BufferManagement getBufferManagement() const { return m_bufferManagement; } @@ -90,6 +91,7 @@ class InputBase { InputBase() {} std::atomic m_bufferManagement = ATOMIC_VAR_INIT(BufferManagement::Prebuffering); + std::chrono::milliseconds m_tist_delay; }; }; -- cgit v1.2.3