diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-09-10 09:10:39 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-09-10 09:10:39 +0000 |
| commit | 0e321af7afb77c88d4d880d66ea657d1e4e1e67e (patch) | |
| tree | e59e5363dc197cc76b2dd77c408b6d28c0025e51 /lib/dvb/scan.cpp | |
| parent | f2f479db5200a1b73c88330f253fabc3c6768e5e (diff) | |
| download | enigma2-0e321af7afb77c88d4d880d66ea657d1e4e1e67e.tar.gz enigma2-0e321af7afb77c88d4d880d66ea657d1e4e1e67e.zip | |
small pat/pmt scan fix
Diffstat (limited to 'lib/dvb/scan.cpp')
| -rw-r--r-- | lib/dvb/scan.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/dvb/scan.cpp b/lib/dvb/scan.cpp index 6ac2eef4..fb8e5442 100644 --- a/lib/dvb/scan.cpp +++ b/lib/dvb/scan.cpp @@ -164,7 +164,7 @@ RESULT eDVBScan::startFilter() } m_PMT = new eTable<ProgramMapSection>(); CONNECT(m_PMT->tableReady, eDVBScan::PMTready); - PMTready(-1); + PMTready(-2); // KabelBW HACK ... on 618Mhz and 626Mhz the transport stream id in PAT and SDT is different { @@ -357,7 +357,7 @@ void eDVBScan::PMTready(int err) else m_pmt_in_progress->second.serviceType = 100; } - if (err == -2) // aborted in sdt progress + if (err == -1) // aborted in sdt progress or pmt timout.. m_pmts_to_read.erase(m_pmt_in_progress++); else if (m_pmt_running) ++m_pmt_in_progress; @@ -655,7 +655,7 @@ void eDVBScan::channelDone() if (m_abort_current_pmt) { m_abort_current_pmt = false; - PMTready(-2); + PMTready(-1); } return; } |
