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
99
AudioChannel* AudioBus::
channelByType
(unsigned channelType)
153
const AudioChannel* AudioBus::
channelByType
(unsigned type) const
155
return const_cast<AudioBus*>(this)->
channelByType
(type);
285
const float* sourceL = sourceBusSafe.
channelByType
(ChannelLeft)->data();
286
const float* sourceR = sourceBusSafe.
channelByType
(ChannelRight)->data();
288
float* destination =
channelByType
(ChannelLeft)->mutableData();
327
const float* sourceL = sourceBusSafe.
channelByType
(ChannelLeft)->data();
328
const float* sourceR = sourceBusSafe.
channelByType
(ChannelRight)->data();
330
float* destination =
channelByType
(ChannelLeft)->mutableData();
350
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 44 milliseconds