aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/pvrparse.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2011-02-09 15:10:03 +0100
committerghost <andreas.monzner@multimedia-labs.de>2011-02-09 15:10:03 +0100
commit7211bd40026fb8b00be038a59abcbfa29569b3ed (patch)
tree341658bd44402bc6997da09e372ec4333301fe61 /lib/dvb/pvrparse.cpp
parent6860090ddeaaa0faf18be716f3eed439808335ba (diff)
parent0c264458b72ac77a0129c8a702d3e8dad70f0e49 (diff)
downloadenigma2-7211bd40026fb8b00be038a59abcbfa29569b3ed.tar.gz
enigma2-7211bd40026fb8b00be038a59abcbfa29569b3ed.zip
Merge branch 'bug_570_playback_skip_fixes_and_cleanup_ml_aholst'
Diffstat (limited to 'lib/dvb/pvrparse.cpp')
-rw-r--r--lib/dvb/pvrparse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/pvrparse.cpp b/lib/dvb/pvrparse.cpp
index 5cdecbd6..e19dd1e4 100644
--- a/lib/dvb/pvrparse.cpp
+++ b/lib/dvb/pvrparse.cpp
@@ -123,7 +123,7 @@ void eMPEGStreamInformation::fixupDiscontinuties()
pts_t current = i->second - currentDelta;
pts_t diff = current - lastpts_t;
- if (llabs(diff) > (90000*5)) // 5sec diff
+ if (llabs(diff) > (90000*10)) // 10sec 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 */