git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18792 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2006-09-10 18:41:20 +00:00
parent 61da80a80a
commit 7933c6db2c
1 changed files with 7 additions and 6 deletions

View File

@ -664,6 +664,7 @@ printf("video decode start\n");
goto wait;
}
#if 0
bigtime_t waituntil;
bigtime_t waitdelta;
char test[100];
@ -672,22 +673,22 @@ printf("video decode start\n");
waituntil = fTimeSourceSysTime - fTimeSourcePerfTime + buffer->startTime;
waitdelta = waituntil - system_time();
/*
sprintf(test, "sys %.6f perf %.6f, vid %.6f, waituntil %.6f, waitdelta %.6f",
fTimeSourceSysTime / 1000000.0f,
fTimeSourcePerfTime / 1000000.0f,
buffer->startTime / 1000000.0f,
waituntil / 1000000.0f,
waitdelta / 1000000.0f);
*/
// if (status != B_TIMED_OUT)
}
/*
if (fVideoView->LockLooperWithTimeout(5000) == B_OK) {
fVideoView->Window()->SetTitle(test);
fVideoView->UnlockLooper();
}
*/
#else
bigtime_t waituntil;
waituntil = fTimeSourceSysTime - fTimeSourcePerfTime + buffer->startTime;
#endif
status = acquire_sem_etc(fThreadWaitSem, 1, B_ABSOLUTE_TIMEOUT, waituntil);
if (status != B_TIMED_OUT)
break;