Searched refs:totalRate (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/webaudio/
H A DAudioBufferSourceNode.cpp439 double totalRate = dopplerRate * sampleRateFactor * basePitchRate; local
442 totalRate = max(0.0, totalRate);
443 totalRate = min(AudioResampler::MaxRate, totalRate);
445 bool isTotalRateValid = !isnan(totalRate) && !isinf(totalRate);
448 totalRate = 1.0;
450 return totalRate;

Completed in 61 milliseconds