summaryrefslogtreecommitdiffstats
path: root/src/DabMultiplexer.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-08-13 21:52:22 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-08-13 21:52:22 +0200
commitc5b84286e25183a6744ff520c60dcb592150d837 (patch)
treebc84954dfe417b0fae27e13ded7520cb5d134b4c /src/DabMultiplexer.cpp
parent0f6904cb8c786fdcfd50423ecf373b29b58840f2 (diff)
downloaddabmux-c5b84286e25183a6744ff520c60dcb592150d837.tar.gz
dabmux-c5b84286e25183a6744ff520c60dcb592150d837.tar.bz2
dabmux-c5b84286e25183a6744ff520c60dcb592150d837.zip
Add new fig carousel to RC
Diffstat (limited to 'src/DabMultiplexer.cpp')
-rw-r--r--src/DabMultiplexer.cpp53
1 files changed, 43 insertions, 10 deletions
diff --git a/src/DabMultiplexer.cpp b/src/DabMultiplexer.cpp
index 05ad1ad..195ae2c 100644
--- a/src/DabMultiplexer.cpp
+++ b/src/DabMultiplexer.cpp
@@ -78,6 +78,7 @@ const unsigned short BitRateTable[64] = {
DabMultiplexer::DabMultiplexer(
boost::shared_ptr<BaseRemoteController> rc,
boost::property_tree::ptree pt) :
+ RemoteControllable("mux"),
m_pt(pt),
m_rc(rc),
timestamp(0),
@@ -92,6 +93,9 @@ DabMultiplexer::DabMultiplexer(
fig_carousel(ensemble)
{
prepare_watermark();
+
+ RC_ADD_PARAMETER(carousel,
+ "Set to 1 to use the new carousel");
}
void DabMultiplexer::prepare_watermark()
@@ -169,7 +173,9 @@ void DabMultiplexer::set_edi_config(const edi_configuration_t& new_edi_conf)
void DabMultiplexer::prepare()
{
parse_ptree(m_pt, ensemble, m_rc);
+ m_use_new_fig_carousel = m_pt.get("general.new_fig_carousel", false);
+ this->enrol_at(m_rc);
ensemble->enrol_at(m_rc);
prepare_subchannels();
@@ -632,8 +638,7 @@ void DabMultiplexer::mux_frame(std::vector<boost::shared_ptr<DabOutput> >& outpu
unsigned char figSize = 0;
// FIB 0 Insertion
- bool new_fig_carousel = m_pt.get("general.new_fig_carousel", false);
- if (new_fig_carousel) {
+ if (m_use_new_fig_carousel) {
fig_carousel.update(currentFrame, date);
figSize += fig_carousel.carousel(0, &etiFrame[index], 30, currentFrame % 4);
index += figSize;
@@ -1131,7 +1136,7 @@ void DabMultiplexer::mux_frame(std::vector<boost::shared_ptr<DabOutput> >& outpu
figSize = 0;
// FIB 1 insertion
- if (new_fig_carousel) {
+ if (m_use_new_fig_carousel) {
figSize += fig_carousel.carousel(1, &etiFrame[index], 30, currentFrame % 4);
index += figSize;
} else switch (rotateFIB) {
@@ -1531,7 +1536,7 @@ void DabMultiplexer::mux_frame(std::vector<boost::shared_ptr<DabOutput> >& outpu
figSize = 0;
// FIB 2 insertion
- if (new_fig_carousel) {
+ if (m_use_new_fig_carousel) {
figSize += fig_carousel.carousel(2, &etiFrame[index], 30, currentFrame % 4);
index += figSize;
}
@@ -1656,7 +1661,7 @@ void DabMultiplexer::mux_frame(std::vector<boost::shared_ptr<DabOutput> >& outpu
etiFrame[index++] = ((char *) &CRCtmp)[0];
}
- if ( !new_fig_carousel and
+ if ( !m_use_new_fig_carousel and
ensemble->services.size() > 30) {
etiLog.log(error,
"Sorry, but this software currently can't write "
@@ -1826,11 +1831,6 @@ void DabMultiplexer::mux_frame(std::vector<boost::shared_ptr<DabOutput> >& outpu
}
#endif // HAVE_OUTPUT_EDI
- if (currentFrame % 100 == 0) {
- etiLog.log(info, "ETI frame number %i Time: %d, no TIST\n",
- currentFrame, mnsc_time.tv_sec);
- }
-
#if _DEBUG
/**********************************************************************
*********** Output a small message *********************************
@@ -1868,3 +1868,36 @@ void DabMultiplexer::print_info(void)
printComponents(ensemble->components);
}
+
+void DabMultiplexer::set_parameter(const std::string& parameter,
+ const std::string& value)
+{
+ if (parameter == "carousel") {
+ std::stringstream ss;
+ ss << value;
+ ss >> m_use_new_fig_carousel;
+ }
+ else {
+ stringstream ss;
+ ss << "Parameter '" << parameter <<
+ "' is not exported by controllable " << get_rc_name();
+ throw ParameterError(ss.str());
+ }
+}
+
+/* Getting a parameter always returns a string. */
+const std::string DabMultiplexer::get_parameter(const std::string& parameter) const
+{
+ stringstream ss;
+ if (parameter == "carousel") {
+ ss << m_use_new_fig_carousel;
+ }
+ else {
+ ss << "Parameter '" << parameter <<
+ "' is not exported by controllable " << get_rc_name();
+ throw ParameterError(ss.str());
+ }
+ return ss.str();
+
+}
+