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

/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DReverb.cpp164 AudioChannel* destinationChannelR = destinationBus->channel(1); local
166 m_convolvers[1]->process(sourceChannelR, destinationChannelR, framesToProcess);
178 AudioChannel* destinationChannelR = destinationBus->channel(1); local
179 bool isCopySafe = destinationChannelL->data() && destinationChannelR->data() && destinationChannelL->length() >= framesToProcess && destinationChannelR->length() >= framesToProcess;
183 memcpy(destinationChannelR->mutableData(), destinationChannelL->data(), sizeof(float) * framesToProcess);
190 AudioChannel* destinationChannelR = destinationBus->channel(1); local
197 m_convolvers[1]->process(sourceChannelL, destinationChannelR, framesToProcess);
207 AudioChannel* destinationChannelR = destinationBus->channel(1); local
214 m_convolvers[1]->process(sourceChannelL, destinationChannelR, framesToProces
[all...]

Completed in 170 milliseconds