diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-04 23:57:18 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-04 23:57:18 +0100 |
| commit | aeb5b72d0ce4bdaf01310117eefd99f03558112f (patch) | |
| tree | 2321e0d9215a684d9ed9d9a82d755a9165e7ad5f /lib/dvb/scan.cpp | |
| parent | 94b2320a63cb6731178fd0b81e27498eff806033 (diff) | |
| download | enigma2-aeb5b72d0ce4bdaf01310117eefd99f03558112f.tar.gz enigma2-aeb5b72d0ce4bdaf01310117eefd99f03558112f.zip | |
workaround for transponder with same tsid/onid on hotbird (11470V, 11258H)
Diffstat (limited to 'lib/dvb/scan.cpp')
| -rw-r--r-- | lib/dvb/scan.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/dvb/scan.cpp b/lib/dvb/scan.cpp index 71893f95..76c71011 100644 --- a/lib/dvb/scan.cpp +++ b/lib/dvb/scan.cpp @@ -40,6 +40,8 @@ int eDVBScan::isValidONIDTSID(int orbital_position, eOriginalNetworkID onid, eTr case 0: case 0x1111: return 0; + case 0x13E: // workaround for 11258H and 11470V on hotbird with same ONID/TSID (0x13E/0x578) + return orbital_position != 130 || tsid != 0x578; case 1: return orbital_position == 192; case 0x00B1: |
