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/MuxElements.h | |
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/MuxElements.h')
-rw-r--r-- | src/MuxElements.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/MuxElements.h b/src/MuxElements.h index 09bf072..be10bf9 100644 --- a/src/MuxElements.h +++ b/src/MuxElements.h @@ -58,10 +58,11 @@ class MuxInitException : public std::exception enum class subchannel_type_t { - Audio = 0, - DataDmb = 1, - Fidc = 2, - Packet = 3 + DABAudio = 0, + DABPlusAudio = 1, + DataDmb = 2, + Fidc = 3, + Packet = 4 }; @@ -297,7 +298,7 @@ public: uid(uid), input(), id(0), - type(subchannel_type_t::Audio), + type(subchannel_type_t::DABAudio), startAddress(0), bitrate(0), protection() |