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

  /external/webkit/Source/WebCore/platform/audio/
AudioResamplerKernel.cpp 103 double interpolationFactor = virtualReadIndex - readIndex;
108 double sample = (1.0 - interpolationFactor) * sample1 + interpolationFactor * sample2;
  /external/webkit/Source/WebCore/webaudio/
DelayDSPKernel.cpp 117 double interpolationFactor = readPosition - readIndex1;
126 double output = (1.0 - interpolationFactor) * sample1 + interpolationFactor * sample2;

Completed in 490 milliseconds