HomeSort by relevance Sort by last modified time
    Searched full:desiredazimuthindex (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFPanner.cpp 111 int desiredAzimuthIndex = static_cast<int>(desiredAzimuthIndexFloat);
112 azimuthBlend = desiredAzimuthIndexFloat - static_cast<double>(desiredAzimuthIndex);
116 desiredAzimuthIndex = max(0, desiredAzimuthIndex);
117 desiredAzimuthIndex = min(numberOfAzimuths - 1, desiredAzimuthIndex);
118 return desiredAzimuthIndex;
166 int desiredAzimuthIndex = calculateDesiredAzimuthIndexAndBlend(azimuth, azimuthBlend);
170 m_azimuthIndex1 = desiredAzimuthIndex;
174 m_azimuthIndex2 = desiredAzimuthIndex;
    [all...]

Completed in 37 milliseconds