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/core/platform/audio/
EqualPowerPanner.cpp 66 const float* sourceL = inputBus->channel(0)->data();
67 const float* sourceR = numberOfInputChannels > 1 ? inputBus->channel(1)->data() : sourceL;
71 if (!sourceL || !sourceR || !destinationL || !destinationR)
94 // sourceL -> destL and "equal-power pan" sourceR as in mono case
98 // sourceR -> destR and "equal-power pan" sourceL as in mono case
125 float inputL = *sourceL++;
134 float inputL = *sourceL++;
143 float inputL = *sourceL++;
AudioBus.cpp 286 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
290 vadd(sourceL, 1, sourceR, 1, destination, 1, length());
328 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
333 vsma(sourceL, 1, &scale, destination, 1, length());
351 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
363 vadd(sourceL, 1, sourceR, 1, tempData, 1, length());
603 const float* sourceL = sourceBus->channel(0)->data();
609 destination[i] = (sourceL[i] + sourceR[i]) / 2;
HRTFPanner.cpp 161 const float* sourceL = inputChannelL->data();
162 const float* sourceR = numInputChannels > 1 ? inputChannelR->data() : sourceL;
238 const float* segmentSourceL = sourceL + offset;

Completed in 2366 milliseconds