X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d658bfa0954be341e31f1f5b38beaee9ce067e21..6dbbf2167e1a8ca25dd2cd8e20bef82686b28f61:/lib/python/Components/AVSwitch.py diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index fea27a65..768b08e9 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -7,26 +7,28 @@ 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): print "system:" + str(value) + eAVSwitch.getInstance().setVideomode(value) def setWSS(self, value): - print "wss:" + str(value) + #print "wss:" + str(value) + pass def InitAVSwitch(): config.av = ConfigSubsection(); - 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") ); + 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()