From: Andreas Monzner Date: Wed, 3 Oct 2007 08:26:08 +0000 (+0000) Subject: update wrong sid values for private epg X-Git-Tag: 2.6.0~1842 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/0dfd6c99665799e9ee7fff6c34551f313bf98fd6 update wrong sid values for private epg --- diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp index 02b3d57e..4b4e6a88 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -2492,7 +2492,7 @@ void eEPGCache::privateSectionRead(const uniqueEPGKey ¤t_service, const __ int sid = data[ptr++] << 8; sid |= data[ptr++]; -// WORKAROUND for wrong transmitted epg data (01.08.2006) +// WORKAROUND for wrong transmitted epg data (01.10.2007) if ( onid == 0x85 ) { switch( (tsid << 16) | sid ) @@ -2503,6 +2503,7 @@ void eEPGCache::privateSectionRead(const uniqueEPGKey ¤t_service, const __ case 0x0300f5: sid = 0xdc; break; case 0x0400d2: sid = 0xe2; tsid = 0x11; break; case 0x1100d3: sid = 0xe3; break; + case 0x0100e4: sid = 0xe4; break; } } ////////////////////////////////////////////