HomeSort by relevance Sort by last modified time
    Searched refs:sourceL (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
EqualPowerPanner.cpp 64 const float* sourceL = inputBus->channel(0)->data();
65 const float* sourceR = numberOfInputChannels > 1 ? inputBus->channel(1)->data() : sourceL;
69 if (!sourceL || !sourceR || !destinationL || !destinationR)
92 // sourceL -> destL and "equal-power pan" sourceR as in mono case
96 // sourceR -> destR and "equal-power pan" sourceL as in mono case
123 float inputL = *sourceL++;
132 float inputL = *sourceL++;
141 float inputL = *sourceL++;
AudioBus.cpp 288 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
292 vadd(sourceL, 1, sourceR, 1, destination, 1, length());
330 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
335 vsma(sourceL, 1, &scale, destination, 1, length());
353 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
365 vadd(sourceL, 1, sourceR, 1, tempData, 1, length());
605 const float* sourceL = sourceBus->channel(0)->data();
611 destination[i] = (sourceL[i] + sourceR[i]) / 2;
HRTFPanner.cpp 169 const float* sourceL = inputChannelL->data();
170 const float* sourceR = numInputChannels > 1 ? inputChannelR->data() : sourceL;
246 const float* segmentSourceL = sourceL + offset;

Completed in 31 milliseconds