aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/pvrparse.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-11-25 00:12:59 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-25 00:12:59 +0100
commitcdfd7a570b5b0813c8f62fc76deed949d7a11803 (patch)
tree1b4e1f1ada84e532fe7c37ea9aea49a4c9d32fa0 /lib/dvb/pvrparse.cpp
parentac065de0aa482d630e41ba80ccdc5ef617e7e378 (diff)
parent16902de6f4215ccd425622b92e8ae6be1ae4a97f (diff)
downloadenigma2-cdfd7a570b5b0813c8f62fc76deed949d7a11803.tar.gz
enigma2-cdfd7a570b5b0813c8f62fc76deed949d7a11803.zip
Merge branch 'bug_570_playback_skip_fixes_and_cleanup_ml_aholst' into experimental
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 */