aboutsummaryrefslogtreecommitdiffstats
path: root/src/ConfigParser.cpp
diff options
context:
space:
mode:
authorKuntzeM <github@kuntze.email>2019-02-11 16:26:54 +0100
committerKuntzeM <github@kuntze.email>2019-02-11 16:26:54 +0100
commit7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a (patch)
tree40cc6ec46894fe37b754f81c31783c0c08bde2b2 /src/ConfigParser.cpp
parenta8cc30be9589280d9bde3ddaf676610c9b12af2a (diff)
downloaddabmux-7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a.tar.gz
dabmux-7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a.tar.bz2
dabmux-7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a.zip
fixed bug DAB with protection level EEP_A 1-4
Diffstat (limited to 'src/ConfigParser.cpp')
-rw-r--r--src/ConfigParser.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp
index f51eb03..0bf3070 100644
--- a/src/ConfigParser.cpp
+++ b/src/ConfigParser.cpp
@@ -874,7 +874,12 @@ static void setup_subchannel_from_ptree(shared_ptr<DabSubchannel>& subchan,
subchan->inputUri = inputUri;
if (type == "dabplus" or type == "audio") {
- subchan->type = subchannel_type_t::Audio;
+ if(type == "dabplus") {
+ subchan->type = subchannel_type_t::DABPlusAudio;
+ } else {
+ subchan->type = subchannel_type_t::DABAudio;
+ }
+
subchan->bitrate = 0;
if (proto == "file") {