Home
last modified time | relevance | path

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

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