aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/AVSwitch.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-10 02:35:04 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-10 02:35:04 +0000
commit3a2cf50af0bbb0e1c26a6f371737cd06b00c81e1 (patch)
tree25a0ccd79e09096e6fc5a307ae7cac3bce3923ce /lib/python/Components/AVSwitch.py
parent87374b339c348859887803383b571cb12a40d5d3 (diff)
downloadenigma2-3a2cf50af0bbb0e1c26a6f371737cd06b00c81e1.tar.gz
enigma2-3a2cf50af0bbb0e1c26a6f371737cd06b00c81e1.zip
removed debug output and fixed config-values
Diffstat (limited to 'lib/python/Components/AVSwitch.py')
-rw-r--r--lib/python/Components/AVSwitch.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py
index 536bfc95..768b08e9 100644
--- a/lib/python/Components/AVSwitch.py
+++ b/lib/python/Components/AVSwitch.py
@@ -7,11 +7,9 @@ class AVSwitch:
pass
def setColorFormat(self, value):
- #print "colorformat:" + str(value)
eAVSwitch.getInstance().setColorFormat(value)
def setAspectRatio(self, value):
- #print "aspectratio:" + str(value)
eAVSwitch.getInstance().setAspectRatio(value)
def setSystem(self, value):
@@ -26,10 +24,11 @@ def InitAVSwitch():
config.av = ConfigSubsection();
config.av.colorformat = configElement("config.av.colorformat", configSelection, 1, ("CVBS", "RGB", "S-Video") );
config.av.aspectratio = configElement("config.av.aspectratio", configSelection, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") );
- config.av.tvsystem = configElement("config.av.tvsystem", configSelection, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") );
+ #config.av.tvsystem = configElement("config.av.tvsystem", configSelection, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") );
+ config.av.tvsystem = configElement("config.av.tvsystem", configSelection, 0, ("PAL", "NTSC") );
config.av.wss = configElement("config.av.wss", configSelection, 0, ("Enable", "Disable") );
config.av.defaultac3 = configElement("config.av.defaultac3", configSelection, 1, ("Enable", "Disable") );
- config.av.vcrswitch = configElement("config.av.vcrswitch", configSelection, 0, ("Enable", "Disable") );
+ config.av.vcrswitch = configElement("config.av.vcrswitch", configSelection, 1, ("Enable", "Disable") );
iAVSwitch = AVSwitch()