add c++ call
[enigma2.git] / lib / python / Components / AVSwitch.py
index 8da370e3741a95b89db34b2eada9f80f158370d2..fea27a655f0bc32b38a94e1be7e27b085629d433 100644 (file)
@@ -1,13 +1,14 @@
 from config import *
 import os
+from enigma import *
 
 class AVSwitch:
        def __init__(self):
                pass
 
        def setColorFormat(self, value):
-               print "colorformat:" + str(value)
-               os.system("scart " + str(value))
+               #print "colorformat:" + str(value)
+               eAVSwitch.getInstance().setColorFormat(value)
                
        def setAspectRatio(self, value):
                print "aspectratio:" + str(value)
@@ -20,12 +21,12 @@ class AVSwitch:
 
 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", configBoolean, 1, ("CVBS", "RGB", "S-Video") );
+       config.av.aspectratio = configElement("config.av.aspectratio", configBoolean, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") );
+       config.av.tvsystem = configElement("config.av.tvsystem", configBoolean, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") );
+       config.av.wss = configElement("config.av.wss", configBoolean, 0, ("Enable", "Disable") );
+       config.av.defaultac3 = configElement("config.av.defaultac3", configBoolean, 1, ("Enable", "Disable") );
+       config.av.vcrswitch = configElement("config.av.vcrswitch", configBoolean, 0, ("Enable", "Disable") );
 
        iAVSwitch = AVSwitch()
 
@@ -44,4 +45,3 @@ def InitAVSwitch():
        config.av.tvsystem.addNotifier(setSystem);
        config.av.wss.addNotifier(setWSS);
 
-