diff options
author | KuntzeM <github@kuntze.email> | 2019-02-11 16:26:54 +0100 |
---|---|---|
committer | KuntzeM <github@kuntze.email> | 2019-02-11 16:26:54 +0100 |
commit | 7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a (patch) | |
tree | 40cc6ec46894fe37b754f81c31783c0c08bde2b2 /src/utils.cpp | |
parent | a8cc30be9589280d9bde3ddaf676610c9b12af2a (diff) | |
download | dabmux-7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a.tar.gz dabmux-7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a.tar.bz2 dabmux-7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a.zip |
fixed bug DAB with protection level EEP_A 1-4
Diffstat (limited to 'src/utils.cpp')
-rw-r--r-- | src/utils.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index be3cfd3..212c97f 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -329,8 +329,11 @@ void printSubchannels(const vec_sp_subchannel& subchannels) etiLog.log(info, " input"); etiLog.level(info) << " URI: " << subchannel->inputUri; switch (subchannel->type) { - case subchannel_type_t::Audio: - etiLog.log(info, " type: audio"); + case subchannel_type_t::DABAudio: + etiLog.log(info, " type: DAbAudio"); + break; + case subchannel_type_t::DABPlusAudio: + etiLog.log(info, " type: DABPlusAudio"); break; case subchannel_type_t::DataDmb: etiLog.log(info, " type: data"); |