mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
workaround for T2 resolution display
Origin commit data
------------------
Commit: 7b47ab46d3
Author: TangoCash <eric@loxat.de>
Date: 2017-12-04 (Mon, 04 Dec 2017)
This commit is contained in:
@@ -204,7 +204,10 @@ bool CZapitChannel::isUHD()
|
||||
{
|
||||
switch(serviceType) {
|
||||
case 0x1f:
|
||||
return true;
|
||||
if (delsys == DVB_T2)
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
case ST_DIGITAL_TELEVISION_SERVICE:
|
||||
case 0x19:
|
||||
{
|
||||
@@ -226,6 +229,11 @@ bool CZapitChannel::isUHD()
|
||||
bool CZapitChannel::isHD()
|
||||
{
|
||||
switch(serviceType) {
|
||||
case 0x1f:
|
||||
if (delsys == DVB_T2)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
case 0x11: case 0x19:
|
||||
//printf("[zapit] HD channel: %s type 0x%X\n", name.c_str(), serviceType);
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user