diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-25 00:12:59 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-25 00:12:59 +0100 |
| commit | cdfd7a570b5b0813c8f62fc76deed949d7a11803 (patch) | |
| tree | 1b4e1f1ada84e532fe7c37ea9aea49a4c9d32fa0 /lib/dvb/pvrparse.cpp | |
| parent | ac065de0aa482d630e41ba80ccdc5ef617e7e378 (diff) | |
| parent | 16902de6f4215ccd425622b92e8ae6be1ae4a97f (diff) | |
| download | enigma2-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.cpp | 2 |
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 */ |
