Home
last modified time | relevance | path

Searched refs:framesThisTime (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/webaudio/
DAudioBufferSourceNode.cpp216 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(&currentDestinationBus, framesThisTime); in provideInput()
228 destinationL += framesThisTime; in provideInput()
230 destinationR += framesThisTime; in provideInput()
232 framesToProcess -= framesThisTime; in provideInput()
/external/webkit/Source/WebCore/platform/audio/
DBiquad.cpp142 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()