aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/idvb.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-04-29 19:54:45 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-04-29 19:54:45 +0000
commita9939e31b86e340d93aad3d6eb450352ca8323d7 (patch)
treed5fc848565452b5a3fb03a387336c31292cbe7a5 /lib/dvb/idvb.h
parent9a632d21c0c849f2e08d388df916e055fbaf42ca (diff)
downloadenigma2-a9939e31b86e340d93aad3d6eb450352ca8323d7.tar.gz
enigma2-a9939e31b86e340d93aad3d6eb450352ca8323d7.zip
implement dxDontshow flag.. its not possible to set this flag in e2 self..
just with external settings editors.... (untested yet)
Diffstat (limited to 'lib/dvb/idvb.h')
-rw-r--r--lib/dvb/idvb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h
index 3a5ef427..11bbbf8e 100644
--- a/lib/dvb/idvb.h
+++ b/lib/dvb/idvb.h
@@ -297,13 +297,14 @@ public:
enum
{
dxNoSDT=1, // don't get SDT
-//nyi dxDontshow=2,
+ dxDontshow=2,
dxNoDVB=4, // dont use PMT for this service ( use cached pids )
dxHoldName=8,
dxNewFound=64,
};
bool usePMT() const { return !(m_flags & dxNoDVB); }
+ bool isHidden() const { return m_flags & dxDontshow; }
CAID_LIST m_ca;