dont show pip options in extension menu when no pip is available
[vuplus_dvbapp] / lib / python / Components / SystemInfo.py
1 SystemInfo = { }
2
3 #FIXMEE...
4 def getNumVideoDecoders():
5         from Tools.Directories import fileExists
6         idx = 0
7         while fileExists("/dev/dvb/adapter0/video%d"%(idx), 'w'):
8                 idx += 1
9
10 SystemInfo["NumVideoDecoders"] = getNumVideoDecoders()