append, don't overwrite __init__.py files
[enigma2.git] / lib / python / Components / AVSwitch.py
index 1a9314976efa533a50d42ffa68808586a5160902..b391dab69015067d7f0650baa2695f279e05244b 100644 (file)
@@ -66,7 +66,14 @@ class AVSwitch:
 
 def InitAVSwitch():
        config.av = ConfigSubsection();
-       config.av.colorformat = configElement("config.av.colorformat", configSelection, 1, (("cvbs", _("CVBS")), ("rgb", _("RGB")), ("svideo", _("S-Video")) ))
+       config.av.yuvenabled = configElementBoolean("config.av.yuvenabled", 0)
+       colorformat_choices = ( ("cvbs", _("CVBS")), ("rgb", _("RGB")), ("svideo", _("S-Video")), ("yuv", _("YPbPr")) )
+       
+       # when YUV is not enabled, don't let the user select it
+       if not config.av.yuvenabled.value:
+               colorformat_choices = colorformat_choices[:3]
+
+       config.av.colorformat = configElement("config.av.colorformat", configSelection, 1, colorformat_choices)
        config.av.aspectratio = configElement("config.av.aspectratio", configSelection, 0, (("4_3_letterbox", _("4:3 Letterbox")), ("4_3_panscan", _("4:3 PanScan")), ("16_9", _("16:9")), ("16_9_always", _("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")), ("ntsc", _("NTSC"))) )
@@ -94,4 +101,4 @@ def InitAVSwitch():
        config.av.tvsystem.addNotifier(setSystem)
        config.av.wss.addNotifier(setWSS)
 
-       iAVSwitch.setInput("ENCODER") # init on startup
\ No newline at end of file
+       iAVSwitch.setInput("ENCODER") # init on startup