OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sourceL
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/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
285
const float*
sourceL
= sourceBusSafe.channelByType(ChannelLeft)->data();
289
vadd(
sourceL
, 1, sourceR, 1, destination, 1, length());
327
const float*
sourceL
= sourceBusSafe.channelByType(ChannelLeft)->data();
332
vsma(
sourceL
, 1, &scale, destination, 1, length());
350
const float*
sourceL
= sourceBusSafe.channelByType(ChannelLeft)->data();
362
vadd(
sourceL
, 1, sourceR, 1, tempData, 1, length());
602
const float*
sourceL
= sourceBus->channel(0)->data();
608
destination[i] = (
sourceL
[i] + sourceR[i]) / 2;
HRTFPanner.cpp
160
const float*
sourceL
= inputChannelL->data();
161
const float* sourceR = numInputChannels > 1 ? inputChannelR->data() :
sourceL
;
237
const float* segmentSourceL =
sourceL
+ offset;
Completed in 61 milliseconds