Home
last modified time | relevance | path

Searched refs:sourceL (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/audio/
DEqualPowerPanner.cpp66 const float* sourceL = inputBus->channel(0)->data(); in pan() local
67 const float* sourceR = numberOfInputChannels > 1 ? inputBus->channel(1)->data() : sourceL; in pan()
71 if (!sourceL || !sourceR || !destinationL || !destinationR) in pan()
125 float inputL = *sourceL++; in pan()
134 float inputL = *sourceL++; in pan()
143 float inputL = *sourceL++; in pan()
DAudioBus.cpp285 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in speakersCopyFrom() local
289 vadd(sourceL, 1, sourceR, 1, destination, 1, length()); in speakersCopyFrom()
327 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in speakersSumFrom() local
332 vsma(sourceL, 1, &scale, destination, 1, length()); in speakersSumFrom()
350 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in speakersSumFrom5_1_ToMono() local
362 vadd(sourceL, 1, sourceR, 1, tempData, 1, length()); in speakersSumFrom5_1_ToMono()
602 const float* sourceL = sourceBus->channel(0)->data(); in createByMixingToMono() local
608 destination[i] = (sourceL[i] + sourceR[i]) / 2; in createByMixingToMono()
DHRTFPanner.cpp160 const float* sourceL = inputChannelL->data(); in pan() local
161 const float* sourceR = numInputChannels > 1 ? inputChannelR->data() : sourceL; in pan()
237 const float* segmentSourceL = sourceL + offset; in pan()