HomeSort by relevance Sort by last modified time
    Searched defs:destinationR (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/audio/
EqualPowerPanner.cpp 65 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data();
67 if (!sourceP || !destinationL || !destinationR)
103 *destinationR++ = static_cast<float>(input * gainR);
AudioBus.cpp 256 float* destinationR = numberOfDestinationChannels > 1 ? channelByType(ChannelRight)->data() : 0;
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);
HRTFPanner.cpp 157 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data();
213 float* segmentDestinationR = destinationR + offset;
  /external/webkit/Source/WebCore/webaudio/
JavaScriptAudioNode.cpp 172 float* destinationR = outputBus->channel(1)->data();
188 memcpy(destinationR, outputBuffer->getChannelData(1)->data() + m_bufferReadWriteIndex, bytesToCopy);
AudioBufferSourceNode.cpp 162 float* destinationR = (numberOfChannels < 2) ? 0 : bus->channel(1)->data();
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;
294 bool isDestinationGood = destinationL && (numberOfChannels == 1 || destinationR);
    [all...]

Completed in 752 milliseconds