diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-11 11:49:17 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-11 11:49:17 +0100 |
commit | e10070a508cdeb7d6a0f2aa5c2657352d5d582c2 (patch) | |
tree | 6ce4efe921e1ee8aab25240b50c4b928ad8711ee | |
parent | 916fd248d6fce66cdcb9213b51f81fee1f5494b2 (diff) | |
download | dabmux-e10070a508cdeb7d6a0f2aa5c2657352d5d582c2.tar.gz dabmux-e10070a508cdeb7d6a0f2aa5c2657352d5d582c2.tar.bz2 dabmux-e10070a508cdeb7d6a0f2aa5c2657352d5d582c2.zip |
nicer printout in utils.cpp
-rw-r--r-- | src/utils.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 05a2d87..149d369 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -414,11 +414,10 @@ void printSubchannels(vector<dabSubchannel*>& subchannels) (*subchannel)->id); etiLog.log(info, " bitrate: %i\n", (*subchannel)->bitrate); - etiLog.log(info, " protection: "); if (protection->form == 0) { - etiLog.log(info, "UEP %i\n", protection->level + 1); + etiLog.log(info, " protection: UEP %i\n", protection->level + 1); } else { - etiLog.log(info, "EEP %i-%c\n", + etiLog.log(info, " protection: EEP %i-%c\n", protection->level + 1, protection->longForm.option == 0 ? 'A' : 'B'); } |