summaryrefslogtreecommitdiffstats
path: root/src/MuxElements.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/MuxElements.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/MuxElements.cpp')
-rw-r--r--src/MuxElements.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/MuxElements.cpp b/src/MuxElements.cpp
index 9c1fc7a..dcd408c 100644
--- a/src/MuxElements.cpp
+++ b/src/MuxElements.cpp
@@ -500,7 +500,10 @@ bool DabService::isProgramme(const std::shared_ptr<dabEnsemble>& ensemble) const
{
bool ret = false;
switch (getType(ensemble)) {
- case subchannel_type_t::Audio: // Audio
+ case subchannel_type_t::DABAudio: // DAB
+ ret = true;
+ break;
+ case subchannel_type_t::DABPlusAudio: // DABPlus
ret = true;
break;
case subchannel_type_t::DataDmb: