OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sourceL
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/webaudio/
JavaScriptAudioNode.cpp
169
float*
sourceL
= inputBus->channel(0)->data();
176
memcpy(inputBuffer->getChannelData(0)->data() + m_bufferReadWriteIndex,
sourceL
, bytesToCopy);
183
memcpy(inputBuffer->getChannelData(1)->data() + m_bufferReadWriteIndex,
sourceL
, bytesToCopy);
AudioBufferSourceNode.cpp
278
float*
sourceL
= m_buffer->getChannelData(0)->data();
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)
314
ASSERT(
sourceL
&& destinationL);
315
if (!
sourceL
|| !destinationL)
330
*destinationL++ = grainEnvelope * *
sourceL
++;
/external/webkit/Source/WebCore/platform/audio/
AudioBus.cpp
252
const float*
sourceL
= sourceBusSafe.channelByType(ChannelLeft)->data();
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();
440
destination[i] = 0.5 * (
sourceL
[i] + sourceR[i]);
HRTFPanner.cpp
154
float*
sourceL
= inputChannelL->data();
155
float* sourceR = numInputChannels > 1 ? inputChannelR->data() :
sourceL
;
210
float* segmentSourceL =
sourceL
+ offset;
Completed in 110 milliseconds