Searched refs:framesThisTime (Results 1 – 2 of 2) sorted by relevance
/external/webkit/Source/WebCore/webaudio/ |
D | AudioBufferSourceNode.cpp | 216 int framesThisTime = min(framesToProcess, framesAvailable); in provideInput() local 219 AudioBus currentDestinationBus(busNumberOfChannels, framesThisTime, false); in provideInput() 220 currentDestinationBus.setChannelMemory(0, destinationL, framesThisTime); in provideInput() 222 currentDestinationBus.setChannelMemory(1, destinationR, framesThisTime); in provideInput() 225 readFromBuffer(¤tDestinationBus, framesThisTime); in provideInput() 228 destinationL += framesThisTime; in provideInput() 230 destinationR += framesThisTime; in provideInput() 232 framesToProcess -= framesThisTime; in provideInput()
|
/external/webkit/Source/WebCore/platform/audio/ |
D | Biquad.cpp | 142 int framesThisTime = n < kBufferSize ? n : kBufferSize; in processFast() local 145 for (int i = 0; i < framesThisTime; ++i) in processFast() 148 processSliceFast(inputP, outputP, B, framesThisTime); in processFast() 151 for (int i = 0; i < framesThisTime; ++i) in processFast() 154 n -= framesThisTime; in processFast()
|