OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:channelByType
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioBus.h
79
AudioChannel*
channelByType
(unsigned type);
80
const AudioChannel*
channelByType
(unsigned type) const;
AudioBus.cpp
102
AudioChannel* AudioBus::
channelByType
(unsigned channelType)
156
const AudioChannel* AudioBus::
channelByType
(unsigned type) const
158
return const_cast<AudioBus*>(this)->
channelByType
(type);
288
const float* sourceL = sourceBusSafe.
channelByType
(ChannelLeft)->data();
289
const float* sourceR = sourceBusSafe.
channelByType
(ChannelRight)->data();
291
float* destination =
channelByType
(ChannelLeft)->mutableData();
330
const float* sourceL = sourceBusSafe.
channelByType
(ChannelLeft)->data();
331
const float* sourceR = sourceBusSafe.
channelByType
(ChannelRight)->data();
333
float* destination =
channelByType
(ChannelLeft)->mutableData();
353
const float* sourceL = sourceBusSafe.
channelByType
(ChannelLeft)->data()
[
all
...]
EqualPowerPanner.cpp
68
float* destinationL = outputBus->
channelByType
(AudioBus::ChannelLeft)->mutableData();
69
float* destinationR = outputBus->
channelByType
(AudioBus::ChannelRight)->mutableData();
HRTFPanner.cpp
156
const AudioChannel* inputChannelL = inputBus->
channelByType
(AudioBus::ChannelLeft);
157
const AudioChannel* inputChannelR = numInputChannels > 1 ? inputBus->
channelByType
(AudioBus::ChannelRight) : 0;
162
float* destinationL = outputBus->
channelByType
(AudioBus::ChannelLeft)->mutableData();
163
float* destinationR = outputBus->
channelByType
(AudioBus::ChannelRight)->mutableData();
HRTFElevation.cpp
193
AudioChannel* leftEarImpulseResponse = impulseResponse->
channelByType
(AudioBus::ChannelLeft);
194
AudioChannel* rightEarImpulseResponse = impulseResponse->
channelByType
(AudioBus::ChannelRight);
Completed in 183 milliseconds