aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/DabMux.cpp16
-rw-r--r--src/zmq2edi/zmq2edi.cpp14
2 files changed, 12 insertions, 18 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp
index 70eee69..3938131 100644
--- a/src/DabMux.cpp
+++ b/src/DabMux.cpp
@@ -363,16 +363,12 @@ int main(int argc, char *argv[])
edi_conf.chunk_len = pt_edi.get<unsigned int>("chunk_len", 207);
int spread_percent = pt_edi.get<int>("packet_spread", 95);
- if (spread_percent != 0) {
- if (spread_percent < 0) {
- throw std::runtime_error("EDI output: negative packet_spread value is invalid.");
- }
-
- edi_conf.fragment_spreading_factor = (double)spread_percent / 100.0;
-
- if (edi_conf.fragment_spreading_factor > 30000) {
- throw std::runtime_error("EDI output: interleaving set for more than 30 seconds!");
- }
+ if (spread_percent < 0) {
+ throw std::runtime_error("EDI output: negative packet_spread value is invalid.");
+ }
+ edi_conf.fragment_spreading_factor = (double)spread_percent / 100.0;
+ if (edi_conf.fragment_spreading_factor > 30000) {
+ throw std::runtime_error("EDI output: interleaving set for more than 30 seconds!");
}
edi_conf.tagpacket_alignment = pt_edi.get<unsigned int>("tagpacket_alignment", 8);
diff --git a/src/zmq2edi/zmq2edi.cpp b/src/zmq2edi/zmq2edi.cpp
index bd5a3ae..cff16c7 100644
--- a/src/zmq2edi/zmq2edi.cpp
+++ b/src/zmq2edi/zmq2edi.cpp
@@ -274,15 +274,13 @@ int start(int argc, char **argv)
case 'i':
{
int spread_percent = std::stoi(optarg);
- if (spread_percent != 0) {
- if (spread_percent < 0) {
- throw std::runtime_error("EDI output: negative spread value is invalid.");
- }
+ if (spread_percent < 0) {
+ throw std::runtime_error("EDI output: negative spread value is invalid.");
+ }
- edi_conf.fragment_spreading_factor = (double)spread_percent / 100.0;
- if (edi_conf.fragment_spreading_factor > 30000) {
- throw std::runtime_error("EDI output: interleaving set for more than 30 seconds!");
- }
+ edi_conf.fragment_spreading_factor = (double)spread_percent / 100.0;
+ if (edi_conf.fragment_spreading_factor > 30000) {
+ throw std::runtime_error("EDI output: interleaving set for more than 30 seconds!");
}
}
break;