HomeSort by relevance Sort by last modified time
    Searched refs:currentRate (Results 1 - 2 of 2) sorted by null

  /frameworks/wilhelm/tests/sandbox/
playbq.c 334 SLpermille currentRate = defaultRate;
350 currentRate = initialRate;
428 SLpermille nextRate = currentRate + deltaRate;
437 currentRate = nextRate;
438 if (currentRate >= max(initialRate, finalRate)) {
439 currentRate = max(initialRate, finalRate);
441 } else if (currentRate <= min(initialRate, finalRate)) {
442 currentRate = min(initialRate, finalRate);
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.cpp 594 float currentRate = rate();
595 if ((currentRate > 0 && time >= m_seekTo) || (currentRate < 0 && time <= m_seekTo) || (abs(m_seekTo - time) <= smallSeekDelta)) {

Completed in 54 milliseconds