Searched refs:destinationR (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DEqualPowerPanner.cpp65 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data(); local
67 if (!sourceP || !destinationL || !destinationR)
103 *destinationR++ = static_cast<float>(input * gainR);
H A DAudioBus.cpp256 float* destinationR = numberOfDestinationChannels > 1 ? channelByType(ChannelRight)->data() : 0; local
263 if (sourceR && destinationR) {
269 *destinationR++ += static_cast<float>(gain * sampleR);
274 } else if (destinationR) {
280 *destinationR++ += static_cast<float>(gain * sample);
297 if (sourceR && destinationR) {
303 *destinationR++ = static_cast<float>(gain * sampleR);
308 } else if (destinationR) {
314 *destinationR++ = static_cast<float>(gain * sample);
H A DHRTFPanner.cpp157 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data(); local
213 float* segmentDestinationR = destinationR + offset;
/external/webkit/Source/WebCore/webaudio/
H A DAudioBufferSourceNode.cpp162 float* destinationR = (numberOfChannels < 2) ? 0 : bus->channel(1)->data(); local
196 if (destinationR) {
197 memset(destinationR, 0, sizeof(float) * m_schedulingFrameDelay);
198 destinationR += m_schedulingFrameDelay;
222 currentDestinationBus.setChannelMemory(1, destinationR, framesThisTime);
230 destinationR += framesThisTime;
248 if (destinationR)
249 memset(destinationR, 0, sizeof(float) * framesToProcess);
293 float* destinationR = numberOfChannels == 2 ? destinationBus->channel(1)->data() : 0; local
294 bool isDestinationGood = destinationL && (numberOfChannels == 1 || destinationR);
312 readFromBufferWithGrainEnvelope(float* sourceL, float* sourceR, float* destinationL, float* destinationR, size_t framesToProcess) argument
[all...]
H A DAudioBufferSourceNode.h142 void readFromBufferWithGrainEnvelope(float* sourceL, float* sourceR, float* destinationL, float* destinationR, size_t framesToProcess);
H A DJavaScriptAudioNode.cpp172 float* destinationR = outputBus->channel(1)->data(); local
188 memcpy(destinationR, outputBuffer->getChannelData(1)->data() + m_bufferReadWriteIndex, bytesToCopy);

Completed in 67 milliseconds