Searched defs:destinationChannelR (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DReverb.cpp155 AudioChannel* destinationChannelR = destinationBus->channel(1); local
157 m_convolvers[1]->process(sourceChannelR, destinationChannelR, framesToProcess);
169 AudioChannel* destinationChannelR = destinationBus->channel(1); local
170 bool isCopySafe = destinationChannelL->data() && destinationChannelR->data() && destinationChannelL->length() >= framesToProcess && destinationChannelR->length() >= framesToProcess;
174 memcpy(destinationChannelR->data(), destinationChannelL->data(), sizeof(float) * framesToProcess);
181 AudioChannel* destinationChannelR = destinationBus->channel(1); local
188 m_convolvers[1]->process(sourceChannelL, destinationChannelR, framesToProcess);
198 AudioChannel* destinationChannelR = destinationBus->channel(1); local
205 m_convolvers[1]->process(sourceChannelL, destinationChannelR, framesToProces
[all...]

Completed in 110 milliseconds