summaryrefslogtreecommitdiffstats
path: root/src/fig
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-23 16:34:43 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-23 16:34:43 +0200
commit234702919ee1129e40fec356db3f6a1c7c5db70a (patch)
treef33a1066d9355ce75f693ecde86f93fb1a3939c0 /src/fig
parent61e917e09678bad4ed3652b1dcbb3d8391cf34d6 (diff)
downloaddabmux-234702919ee1129e40fec356db3f6a1c7c5db70a.tar.gz
dabmux-234702919ee1129e40fec356db3f6a1c7c5db70a.tar.bz2
dabmux-234702919ee1129e40fec356db3f6a1c7c5db70a.zip
Remove FIG0/5 debugging
Diffstat (limited to 'src/fig')
-rw-r--r--src/fig/FIG0.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/fig/FIG0.cpp b/src/fig/FIG0.cpp
index 48c2b4b..4233b5b 100644
--- a/src/fig/FIG0.cpp
+++ b/src/fig/FIG0.cpp
@@ -616,17 +616,13 @@ FillStatus FIG0_5::fill(uint8_t *buf, size_t max_size)
}
if ( (*service)->language == 0) {
- etiLog.level(debug) << "FIG0_5 no lang";
continue;
}
- etiLog.level(debug) << "FIG0_5 " << (*componentFIG0_5)->uid;
-
const int required_size = 2;
if (fig0 == NULL) {
if (remaining < 2 + required_size) {
- etiLog.level(debug) << "FIG0_5 no space for header";
break;
}
fig0 = (FIGtype0*)buf;
@@ -641,7 +637,6 @@ FillStatus FIG0_5::fill(uint8_t *buf, size_t max_size)
remaining -= 2;
}
else if (remaining < required_size) {
- etiLog.level(debug) << "FIG0_5 no space";
break;
}
@@ -657,12 +652,9 @@ FillStatus FIG0_5::fill(uint8_t *buf, size_t max_size)
remaining -= 2;
}
- etiLog.level(debug) << "FIG0_5 out";
-
if (componentFIG0_5 == ensemble->components.end()) {
componentFIG0_5 = ensemble->components.begin();
fs.complete_fig_transmitted = true;
- etiLog.level(debug) << "FIG0_5 complete";
}
fs.num_bytes_written = max_size - remaining;