diff options
Diffstat (limited to 'lib/dvb')
| -rw-r--r-- | lib/dvb/demux.cpp | 2 | ||||
| -rw-r--r-- | lib/dvb/pvrparse.cpp | 10 | ||||
| -rw-r--r-- | lib/dvb/tstools.cpp | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp index c6d3b103..b0d9b400 100644 --- a/lib/dvb/demux.cpp +++ b/lib/dvb/demux.cpp @@ -412,7 +412,7 @@ private: }; eDVBRecordFileThread::eDVBRecordFileThread() - : m_ts_parser(m_stream_info) + :eFilePushThread(IOPRIO_CLASS_RT, 7), m_ts_parser(m_stream_info) { m_current_offset = 0; } diff --git a/lib/dvb/pvrparse.cpp b/lib/dvb/pvrparse.cpp index 4b8da890..a6113329 100644 --- a/lib/dvb/pvrparse.cpp +++ b/lib/dvb/pvrparse.cpp @@ -63,7 +63,7 @@ void eMPEGStreamInformation::fixupDiscontinuties() if (!m_access_points.size()) return; - eDebug("Fixing discontinuities ..."); +// eDebug("Fixing discontinuities ..."); /* if we have no delta at the beginning, extrapolate it */ if ((m_access_points.find(0) == m_access_points.end()) && (m_access_points.size() > 1)) @@ -77,7 +77,7 @@ void eMPEGStreamInformation::fixupDiscontinuties() tdiff *= first->first; tdiff /= diff; m_timestamp_deltas[0] = first->second - tdiff; - eDebug("first delta is %08llx", first->second - tdiff); +// eDebug("first delta is %08llx", first->second - tdiff); } } @@ -92,16 +92,16 @@ void eMPEGStreamInformation::fixupDiscontinuties() if (llabs(diff) > (90000*5)) // 5sec diff { - eDebug("%llx < %llx, have discont. new timestamp is %llx (diff is %llx)!", current, lastpts_t, i->second, diff); +// eDebug("%llx < %llx, have discont. new timestamp is %llx (diff is %llx)!", current, lastpts_t, i->second, diff); currentDelta = i->second - lastpts_t; /* FIXME: should be the extrapolated new timestamp, based on the current rate */ - eDebug("current delta now %llx, making current to %llx", currentDelta, i->second - currentDelta); +// eDebug("current delta now %llx, making current to %llx", currentDelta, i->second - currentDelta); m_timestamp_deltas[i->first] = currentDelta; } lastpts_t = i->second - currentDelta; } - eDebug("ok, found %d disconts.", m_timestamp_deltas.size()); +// eDebug("ok, found %d disconts.", m_timestamp_deltas.size()); #if 0 for (off_t x=0x25807E34ULL; x < 0x25B3CF70; x+= 100000) diff --git a/lib/dvb/tstools.cpp b/lib/dvb/tstools.cpp index 4ee26265..87791c93 100644 --- a/lib/dvb/tstools.cpp +++ b/lib/dvb/tstools.cpp @@ -36,7 +36,7 @@ int eDVBTSTools::openFile(const char *filename) m_use_streaminfo = 1; else { - eDebug("no recorded stream information available"); +// eDebug("no recorded stream information available"); m_use_streaminfo = 0; } @@ -267,7 +267,7 @@ void eDVBTSTools::calcEnd() m_end_valid = 0; m_futile = 0; - eDebug("file size changed, recalc length"); +// eDebug("file size changed, recalc length"); } int maxiter = 10; |
