X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/01dfc57fc043ec0d404068d5abf325c2a59ff027..a29bbc0a4ee2eb5f0d86407088380de9887359a0:/lib/dvb/pvrparse.cpp diff --git a/lib/dvb/pvrparse.cpp b/lib/dvb/pvrparse.cpp index d6978301..1b827d3c 100644 --- a/lib/dvb/pvrparse.cpp +++ b/lib/dvb/pvrparse.cpp @@ -146,7 +146,7 @@ int eMPEGStreamInformation::fixupPTS(const off_t &offset, pts_t &ts) std::multimap::const_iterator l = m_pts_to_offset.upper_bound(ts - 60 * 90000), u = m_pts_to_offset.upper_bound(ts + 60 * 90000), - nearest = m_access_points.end(); + nearest = m_pts_to_offset.end(); while (l != u) { @@ -154,7 +154,7 @@ int eMPEGStreamInformation::fixupPTS(const off_t &offset, pts_t &ts) nearest = l; ++l; } - if (nearest == m_access_points.end()) + if (nearest == m_pts_to_offset.end()) return 1; ts -= getDelta(nearest->second); @@ -219,7 +219,6 @@ pts_t eMPEGStreamInformation::getInterpolated(off_t offset) off_t eMPEGStreamInformation::getAccessPoint(pts_t ts) { /* FIXME: more efficient implementation */ - pts_t delta = 0; off_t last = 0; for (std::map::const_iterator i(m_access_points.begin()); i != m_access_points.end(); ++i) {