aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/epgcache.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-10-03 08:26:08 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-10-03 08:26:08 +0000
commit0dfd6c99665799e9ee7fff6c34551f313bf98fd6 (patch)
treee3dc1d00adf83d9122a7622be8d8da5095721406 /lib/dvb/epgcache.cpp
parent7513004ce13f52b69843e731c35517d74a19761e (diff)
downloadenigma2-0dfd6c99665799e9ee7fff6c34551f313bf98fd6.tar.gz
enigma2-0dfd6c99665799e9ee7fff6c34551f313bf98fd6.zip
update wrong sid values for private epg
Diffstat (limited to 'lib/dvb/epgcache.cpp')
-rw-r--r--lib/dvb/epgcache.cpp3
1 files changed, 2 insertions, 1 deletions
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 &current_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 &current_service, const __
case 0x0300f5: sid = 0xdc; break;
case 0x0400d2: sid = 0xe2; tsid = 0x11; break;
case 0x1100d3: sid = 0xe3; break;
+ case 0x0100e4: sid = 0xe4; break;
}
}
////////////////////////////////////////////