1 from config import config, ConfigSlider, ConfigSelection, ConfigYesNo, \
2 ConfigEnableDisable, ConfigSubsection, ConfigBoolean, ConfigNumber
3 from enigma import eAVSwitch, getDesktop
4 from SystemInfo import SystemInfo
7 def setInput(self, input):
8 INPUT = { "ENCODER": 0, "SCART": 1, "AUX": 2 }
9 eAVSwitch.getInstance().setInput(INPUT[input])
11 def setColorFormat(self, value):
12 eAVSwitch.getInstance().setColorFormat(value)
14 def setAspectRatio(self, value):
15 eAVSwitch.getInstance().setAspectRatio(value)
17 def setSystem(self, value):
18 eAVSwitch.getInstance().setVideomode(value)
20 def getOutputAspect(self):
21 valstr = config.av.aspectratio.value
22 if valstr in ("4_3_letterbox", "4_3_panscan"): # 4:3
24 elif valstr == "16_9": # auto ... 4:3 or 16:9
26 aspect_str = open("/proc/stb/vmpeg/0/aspect", "r").read()
27 if aspect_str == "1": # 4:3
31 elif valstr in ("16_9_always", "16_9_letterbox"): # 16:9
33 elif valstr in ("16_10_letterbox", "16_10_panscan"): # 16:10
37 def getFramebufferScale(self):
38 aspect = self.getOutputAspect()
39 fb_size = getDesktop(0).size()
40 return (aspect[0] * fb_size.height(), aspect[1] * fb_size.width())
42 def getAspectRatioSetting(self):
43 valstr = config.av.aspectratio.value
44 if valstr == "4_3_letterbox":
46 elif valstr == "4_3_panscan":
48 elif valstr == "16_9":
50 elif valstr == "16_9_always":
52 elif valstr == "16_10_letterbox":
54 elif valstr == "16_10_panscan":
56 elif valstr == "16_9_letterbox":
60 def setAspectWSS(self, aspect=None):
61 if not config.av.wss.value:
62 value = 2 # auto(4:3_off)
65 eAVSwitch.getInstance().setWSS(value)
68 config.av = ConfigSubsection()
69 config.av.yuvenabled = ConfigBoolean(default=False)
70 colorformat_choices = {"cvbs": _("CVBS"), "rgb": _("RGB"), "svideo": _("S-Video")}
72 # when YUV is not enabled, don't let the user select it
73 if config.av.yuvenabled.value:
74 colorformat_choices["yuv"] = _("YPbPr")
76 config.av.colorformat = ConfigSelection(choices=colorformat_choices, default="rgb")
77 config.av.aspectratio = ConfigSelection(choices={
78 "4_3_letterbox": _("4:3 Letterbox"),
79 "4_3_panscan": _("4:3 PanScan"),
81 "16_9_always": _("16:9 always"),
82 "16_10_letterbox": _("16:10 Letterbox"),
83 "16_10_panscan": _("16:10 PanScan"),
84 "16_9_letterbox": _("16:9 Letterbox")},
85 default = "4_3_letterbox")
87 config.av.aspect = ConfigSelection(choices={
91 "auto": _("Automatic")},
93 config.av.policy_169 = ConfigSelection(choices={
94 # TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term.
95 "letterbox": _("Letterbox"),
96 # TRANSLATORS: (aspect ratio policy: cropped content on left/right) in doubt, keep english term
97 "panscan": _("Pan&Scan"),
98 # TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect)
99 "scale": _("Just Scale")},
100 default = "letterbox")
101 config.av.policy_43 = ConfigSelection(choices={
102 # TRANSLATORS: (aspect ratio policy: black bars on left/right) in doubt, keep english term.
103 "pillarbox": _("Pillarbox"),
104 # TRANSLATORS: (aspect ratio policy: cropped content on left/right) in doubt, keep english term
105 "panscan": _("Pan&Scan"),
106 # TRANSLATORS: (aspect ratio policy: display as fullscreen, with stretching the left/right)
107 "nonlinear": _("Nonlinear"),
108 # TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect)
109 "scale": _("Just Scale")},
110 default = "pillarbox")
111 config.av.tvsystem = ConfigSelection(choices = {"pal": _("PAL"), "ntsc": _("NTSC"), "multinorm": _("multinorm")}, default="pal")
112 config.av.wss = ConfigEnableDisable(default = True)
113 config.av.defaultac3 = ConfigYesNo(default = False)
114 config.av.generalAC3delay = ConfigNumber(default = 0)
115 config.av.generalPCMdelay = ConfigNumber(default = 0)
116 config.av.vcrswitch = ConfigEnableDisable(default = False)
118 iAVSwitch = AVSwitch()
120 def setColorFormat(configElement):
121 map = {"cvbs": 0, "rgb": 1, "svideo": 2, "yuv": 3}
122 iAVSwitch.setColorFormat(map[configElement.value])
124 def setAspectRatio(configElement):
125 map = {"4_3_letterbox": 0, "4_3_panscan": 1, "16_9": 2, "16_9_always": 3, "16_10_letterbox": 4, "16_10_panscan": 5, "16_9_letterbox" : 6}
126 iAVSwitch.setAspectRatio(map[configElement.value])
128 def setSystem(configElement):
129 map = {"pal": 0, "ntsc": 1, "multinorm" : 2}
130 iAVSwitch.setSystem(map[configElement.value])
132 def setWSS(configElement):
133 iAVSwitch.setAspectWSS()
135 # this will call the "setup-val" initial
136 config.av.colorformat.addNotifier(setColorFormat)
137 config.av.aspectratio.addNotifier(setAspectRatio)
138 config.av.tvsystem.addNotifier(setSystem)
139 config.av.wss.addNotifier(setWSS)
141 iAVSwitch.setInput("ENCODER") # init on startup
142 SystemInfo["ScartSwitch"] = eAVSwitch.getInstance().haveScartSwitch()
145 can_downmix = open("/proc/stb/audio/ac3_choices", "r").read()[:-1].find("downmix") != -1
149 SystemInfo["CanDownmixAC3"] = can_downmix
151 def setAC3Downmix(configElement):
152 open("/proc/stb/audio/ac3", "w").write(configElement.value and "downmix" or "passthrough")
153 config.av.downmix_ac3 = ConfigYesNo(default = True)
154 config.av.downmix_ac3.addNotifier(setAC3Downmix)
157 can_osd_alpha = open("/proc/stb/video/alpha", "r") and True or False
159 can_osd_alpha = False
161 SystemInfo["CanChangeOsdAlpha"] = can_osd_alpha
163 def setAlpha(config):
164 open("/proc/stb/video/alpha", "w").write(str(config.value))
167 config.av.osd_alpha = ConfigSlider(default=255, limits=(0,255))
168 config.av.osd_alpha.addNotifier(setAlpha)