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

/external/webkit/Source/WebCore/webaudio/
H A DJavaScriptAudioNode.cpp169 float* sourceL = inputBus->channel(0)->data(); local
176 memcpy(inputBuffer->getChannelData(0)->data() + m_bufferReadWriteIndex, sourceL, bytesToCopy);
183 memcpy(inputBuffer->getChannelData(1)->data() + m_bufferReadWriteIndex, sourceL, bytesToCopy);
H A DAudioBufferSourceNode.cpp278 float* sourceL = m_buffer->getChannelData(0)->data(); local
282 bool isSourceGood = sourceL && (numberOfChannels == 1 || sourceR) && m_readIndex + framesToProcess <= m_buffer->length();
288 sourceL += m_readIndex;
300 readFromBufferWithGrainEnvelope(sourceL, sourceR, destinationL, destinationR, framesToProcess);
303 memcpy(destinationL, sourceL, sizeof(float) * framesToProcess);
312 void AudioBufferSourceNode::readFromBufferWithGrainEnvelope(float* sourceL, float* sourceR, float* destinationL, float* destinationR, size_t framesToProcess) argument
314 ASSERT(sourceL && destinationL);
315 if (!sourceL || !destinationL)
330 *destinationL++ = grainEnvelope * *sourceL++;
/external/webkit/Source/WebCore/platform/audio/
H A DAudioBus.cpp252 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); local
266 float sampleL = *sourceL++;
278 float sample = *sourceL++;
288 float sampleL = *sourceL++;
300 float sampleL = *sourceL++;
312 float sample = *sourceL++;
322 float sampleL = *sourceL++;
434 float* sourceL = sourceBus->channel(0)->data(); local
440 destination[i] = 0.5 * (sourceL[i] + sourceR[i]);
H A DHRTFPanner.cpp154 float* sourceL = inputChannelL->data(); local
155 float* sourceR = numInputChannels > 1 ? inputChannelR->data() : sourceL;
210 float* segmentSourceL = sourceL + offset;

Completed in 85 milliseconds