small pat/pmt scan fix
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Wed, 10 Sep 2008 09:10:39 +0000 (09:10 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Wed, 10 Sep 2008 09:10:39 +0000 (09:10 +0000)
lib/dvb/scan.cpp

index 6ac2eef42ff5e4abcad2179860fcc4f961a5ee02..fb8e544200456ada8c100027225f8e45c5422928 100644 (file)
@@ -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;
        }