Stefan Schuermans commited on 2012-05-06 18:10:51
Showing 1 changed files, with 2 additions and 0 deletions.
| ... | ... |
@@ -301,9 +301,11 @@ void AppBbmRun(AppBbmState *state) // (extern) |
| 301 | 301 |
long delta = state->nextActMs - ms; |
| 302 | 302 |
if (delta > 0) |
| 303 | 303 |
return; |
| 304 |
+ /* do not catch up - this can harm synchronous playback |
|
| 304 | 305 |
// if lagging behind more than 100ms, do not try to catch up -> advance time |
| 305 | 306 |
if (delta < -100) |
| 306 | 307 |
state->nextActMs = ms; |
| 308 |
+ */ |
|
| 307 | 309 |
|
| 308 | 310 |
// no file -> open next one |
| 309 | 311 |
if (!state->haveFile) {
|
| 310 | 312 |