fix automatic scan
[enigma2.git] / lib / python / Components / AVSwitch.py
index 9c5d5bbfa683c7008e7209f9be29654f6d4e89e2..768b08e948cdd5d3187544043b599c54063a66b4 100644 (file)
@@ -1,33 +1,34 @@
 from config import *
 from config import *
+import os
+from enigma import *
 
 class AVSwitch:
        def __init__(self):
                pass
 
        def setColorFormat(self, value):
 
 class AVSwitch:
        def __init__(self):
                pass
 
        def setColorFormat(self, value):
-               print "colorformat"
-               print value
+               eAVSwitch.getInstance().setColorFormat(value)
                
        def setAspectRatio(self, value):
                
        def setAspectRatio(self, value):
-               print "aspectratio"
-               print value
+               eAVSwitch.getInstance().setAspectRatio(value)
 
        def setSystem(self, value):
 
        def setSystem(self, value):
-               print "system"
-               print value
+               print "system:" + str(value)
+               eAVSwitch.getInstance().setVideomode(value)
 
        def setWSS(self, value):
 
        def setWSS(self, value):
-               print "wss"
-               print value
+               #print "wss:" + str(value)
+               pass
 
 def InitAVSwitch():
        config.av = ConfigSubsection();
 
 def InitAVSwitch():
        config.av = ConfigSubsection();
-       config.av.colorformat = configElement("1", configBoolean, 1, ("CVBS", "RGB", "S-Video") );
-       config.av.aspectratio = configElement("2", configBoolean, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") );
-       config.av.tvsystem = configElement("3", configBoolean, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") );
-       config.av.wss = configElement("4", configBoolean, 0, ("Enable", "Disable") );
-       config.av.defaultac3 = configElement("5", configBoolean, 1, ("Enable", "Disable") );
-       config.av.vcrswitch = configElement("6", configBoolean, 0, ("Enable", "Disable") );
+       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", "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, 1, ("Enable", "Disable") );
 
        iAVSwitch = AVSwitch()
 
 
        iAVSwitch = AVSwitch()
 
@@ -44,4 +45,5 @@ def InitAVSwitch():
        config.av.colorformat.addNotifier(setColorFormat);
        config.av.aspectratio.addNotifier(setAspectRatio);
        config.av.tvsystem.addNotifier(setSystem);
        config.av.colorformat.addNotifier(setColorFormat);
        config.av.aspectratio.addNotifier(setAspectRatio);
        config.av.tvsystem.addNotifier(setSystem);
-       config.av.wss.addNotifier(setWSS);
\ No newline at end of file
+       config.av.wss.addNotifier(setWSS);
+