aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/SystemInfo.py
blob: f33a8552991fd2eed842ca7c7fa4d590556e54be (plain)
1
2
3
4
5
6
7
8
9
10
SystemInfo = { }

#FIXMEE...
def getNumVideoDecoders():
	from Tools.Directories import fileExists
	idx = 0
	while fileExists("/dev/dvb/adapter0/video%d"%(idx), 'w'):
		idx += 1

SystemInfo["NumVideoDecoders"] = getNumVideoDecoders()