diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-02-13 09:29:47 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-02-13 09:29:47 +0100 |
commit | 8594e81beadc395b3fc2568dc29b48712acb2561 (patch) | |
tree | b22d00fc01aa81a095b0664b3b947781a1064a49 /src/utils.cpp | |
parent | c4833640f8dddbe556cc6d40211223a05d5270b8 (diff) | |
parent | 7eb97a486a8a39ef3986b9c2c7c452e9ccf2693a (diff) | |
download | dabmux-8594e81beadc395b3fc2568dc29b48712acb2561.tar.gz dabmux-8594e81beadc395b3fc2568dc29b48712acb2561.tar.bz2 dabmux-8594e81beadc395b3fc2568dc29b48712acb2561.zip |
Merge KuntzeM's pull request fixing #35 into next
ETI with DAB (MUSICAM) and EEP_A protection level was not possible.
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 02595b7..5f81083 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -327,8 +327,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"); |