aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-06-25 22:15:12 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-06-25 22:15:12 +0200
commite761d85be96d37eabe9571cac9c2b54e81de1baf (patch)
tree580423e0f47dd750e76afa88e79baa90df8aab4d /lib/python
parent5db5327ab2126b7bf1a1eb20530de5cb288f9c52 (diff)
downloadenigma2-e761d85be96d37eabe9571cac9c2b54e81de1baf.tar.gz
enigma2-e761d85be96d37eabe9571cac9c2b54e81de1baf.zip
ChannelSelection.py: add dvb service type 22 as tv service, add dvb service type 10 as radio service
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index 0ff4042b..5d78ec77 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -653,9 +653,18 @@ class ChannelSelectionEdit:
MODE_TV = 0
MODE_RADIO = 1
-# this makes it much simple to implement a selectable radio or tv mode :)
-service_types_tv = '1:7:1:0:0:0:0:0:0:0:(type == 1) || (type == 17) || (type == 195) || (type == 25) || (type == 134)'
-service_types_radio = '1:7:2:0:0:0:0:0:0:0:(type == 2)'
+# type 1 = digital television service
+# type 4 = nvod reference service (NYI)
+# type 17 = MPEG-2 HD digital television service
+# type 22 = advanced codec SD digital television
+# type 24 = advanced codec SD NVOD reference service (NYI)
+# type 25 = advanced codec HD digital television
+# type 27 = advanced codec HD NVOD reference service (NYI)
+# type 2 = digital radio sound service
+# type 10 = advanced codec digital radio sound service
+
+service_types_tv = '1:7:1:0:0:0:0:0:0:0:(type == 1) || (type == 17) || (type == 22) || (type == 25) || (type == 134) || (type == 195)'
+service_types_radio = '1:7:2:0:0:0:0:0:0:0:(type == 2) || (type == 10)'
class ChannelSelectionBase(Screen):
def __init__(self, session):