aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/pmt.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-13 13:59:56 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-13 13:59:56 +0000
commitdbb5a31a5ade1387803b4710ea460c7b595d9339 (patch)
treef4c8a5a5d3efa5eaed4327295542312fa324a1c0 /lib/dvb/pmt.cpp
parent721b76b816200cd68a187a839062e50b0eca1303 (diff)
downloadenigma2-dbb5a31a5ade1387803b4710ea460c7b595d9339.tar.gz
enigma2-dbb5a31a5ade1387803b4710ea460c7b595d9339.zip
fix bug
Diffstat (limited to 'lib/dvb/pmt.cpp')
-rw-r--r--lib/dvb/pmt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp
index 255b8765..a6bde907 100644
--- a/lib/dvb/pmt.cpp
+++ b/lib/dvb/pmt.cpp
@@ -178,8 +178,8 @@ int eDVBServicePMTHandler::getProgramInfo(struct program &program)
if ( m_service && !m_service->cacheEmpty() )
{
cached_vpid = m_service->getCacheEntry(eDVBService::cVPID);
- cached_apid_mpeg = m_service->getCacheEntry(eDVBService::cAC3PID);
- cached_apid_ac3 = m_service->getCacheEntry(eDVBService::cAPID);
+ cached_apid_mpeg = m_service->getCacheEntry(eDVBService::cAPID);
+ cached_apid_ac3 = m_service->getCacheEntry(eDVBService::cAC3PID);
cached_tpid = m_service->getCacheEntry(eDVBService::cTPID);
}