1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
from enigma import eTimer
from Components.config import config, ConfigSubsection, ConfigSlider, ConfigSelection,ConfigYesNo
from Tools.CList import CList
from Tools.HardwareInfo import HardwareInfo
import os
# The "VideoEnhancement" is the interface to /proc/stb/vmpeg/0.
class VideoEnhancement:
firstRun = None
def __init__(self):
self.last_modes_preferred = [ ]
self.on_hotplug = CList()
self.createConfig()
def createConfig(self, *args):
hw_type = HardwareInfo().get_device_name()
config.pep = ConfigSubsection()
def setContrast(config):
myval = int(config.value*256)
try:
print "--> setting contrast to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_contrast", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_contrast."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.contrast = ConfigSlider(default=128, limits=(0,256))
config.pep.contrast.addNotifier(setContrast)
def setSaturation(config):
myval = int(config.value*256)
try:
print "--> setting saturation to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_saturation", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_saturaion."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.saturation = ConfigSlider(default=128, limits=(0,256))
config.pep.saturation.addNotifier(setSaturation)
def setHue(config):
myval = int(config.value*256)
try:
print "--> setting hue to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_hue", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_hue."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.hue = ConfigSlider(default=128, limits=(0,256))
config.pep.hue.addNotifier(setHue)
def setBrightness(config):
myval = int(config.value*256)
try:
print "--> setting brightness to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_brightness", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_brightness."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.brightness = ConfigSlider(default=128, limits=(0,256))
config.pep.brightness.addNotifier(setBrightness)
def setBlock_noise_reduction(config):
myval = int(config.value)
try:
print "--> setting block_noise_reduction to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_block_noise_reduction", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_block_noise_reduction."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.block_noise_reduction = ConfigSlider(default=0, limits=(0,5))
config.pep.block_noise_reduction.addNotifier(setBlock_noise_reduction)
def setMosquito_noise_reduction(config):
myval = int(config.value)
try:
print "--> setting mosquito_noise_reduction to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_mosquito_noise_reduction", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_mosquito_noise_reduction."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.mosquito_noise_reduction = ConfigSlider(default=0, limits=(0,5))
config.pep.mosquito_noise_reduction.addNotifier(setMosquito_noise_reduction)
def setDigital_contour_removal(config):
myval = int(config.value)
try:
print "--> setting digital_contour_removal to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_digital_contour_removal", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_digital_contour_removal."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.digital_contour_removal = ConfigSlider(default=0, limits=(0,5))
config.pep.digital_contour_removal.addNotifier(setDigital_contour_removal)
if hw_type == 'dm8000':
def setSplitMode(config):
try:
print "--> setting splitmode to:",str(config.value)
open("/proc/stb/vmpeg/0/pep_split", "w").write(str(config.value))
except IOError:
print "couldn't write pep_split."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.split = ConfigSelection(choices={
"off": _("Off"),
"left": _("Left"),
"right": _("Right")},
default = "off")
config.pep.split.addNotifier(setSplitMode)
def setSharpness(config):
myval = int(config.value*256)
try:
print "--> setting sharpness to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_sharpness", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_sharpness."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.sharpness = ConfigSlider(default=0, limits=(0,256))
config.pep.sharpness.addNotifier(setSharpness)
def setAutoflesh(config):
myval = int(config.value)
try:
print "--> setting auto_flesh to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_auto_flesh", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_auto_flesh."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.auto_flesh = ConfigSlider(default=0, limits=(0,4))
config.pep.auto_flesh.addNotifier(setAutoflesh)
def setGreenboost(config):
myval = int(config.value)
try:
print "--> setting green_boost to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_green_boost", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_green_boost."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.green_boost = ConfigSlider(default=0, limits=(0,4))
config.pep.green_boost.addNotifier(setGreenboost)
def setBlueboost(config):
myval = int(config.value)
try:
print "--> setting blue_boost to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_blue_boost", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_blue_boost."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.blue_boost = ConfigSlider(default=0, limits=(0,4))
config.pep.blue_boost.addNotifier(setBlueboost)
def setDynamic_contrast(config):
myval = int(config.value)
try:
print "--> setting dynamic_contrast to: %0.8X" % myval
open("/proc/stb/vmpeg/0/pep_dynamic_contrast", "w").write("%0.8X" % myval)
except IOError:
print "couldn't write pep_dynamic_contrast."
if VideoEnhancement.firstRun is False:
self.setConfiguredValues()
config.pep.dynamic_contrast = ConfigSlider(default=0, limits=(0,256))
config.pep.dynamic_contrast.addNotifier(setDynamic_contrast)
VideoEnhancement.firstRun = True
def setConfiguredValues(self):
try:
print "--> applying pep values"
open("/proc/stb/vmpeg/0/pep_apply", "w").write("1")
VideoEnhancement.firstRun = False
except IOError:
print "couldn't apply pep values."
if config.usage.setup_level.index >= 2: # expert+
hw_type = HardwareInfo().get_device_name()
if hw_type == 'dm8000' or hw_type == 'dm800':
video_enhancement = VideoEnhancement()
if video_enhancement.firstRun == True:
video_enhancement.setConfiguredValues()
|