Home
last modified time | relevance | path

Searched refs:channelByType (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/audio/
DAudioBus.cpp99 AudioChannel* AudioBus::channelByType(unsigned channelType) in channelByType() function in WebCore::AudioBus
153 const AudioChannel* AudioBus::channelByType(unsigned type) const in channelByType() function in WebCore::AudioBus
155 return const_cast<AudioBus*>(this)->channelByType(type); in channelByType()
285 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in speakersCopyFrom()
286 const float* sourceR = sourceBusSafe.channelByType(ChannelRight)->data(); in speakersCopyFrom()
288 float* destination = channelByType(ChannelLeft)->mutableData(); in speakersCopyFrom()
327 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in speakersSumFrom()
328 const float* sourceR = sourceBusSafe.channelByType(ChannelRight)->data(); in speakersSumFrom()
330 float* destination = channelByType(ChannelLeft)->mutableData(); in speakersSumFrom()
350 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in speakersSumFrom5_1_ToMono()
[all …]
DHRTFPanner.cpp156 const AudioChannel* inputChannelL = inputBus->channelByType(AudioBus::ChannelLeft); in pan()
157 …const AudioChannel* inputChannelR = numInputChannels > 1 ? inputBus->channelByType(AudioBus::Chann… in pan()
162 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData(); in pan()
163 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData(); in pan()
DAudioBus.h79 AudioChannel* channelByType(unsigned type);
80 const AudioChannel* channelByType(unsigned type) const;
DEqualPowerPanner.cpp68 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData(); in pan()
69 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData(); in pan()
DHRTFElevation.cpp193 AudioChannel* leftEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelLeft); in calculateKernelsForAzimuthElevation()
194 AudioChannel* rightEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelRight); in calculateKernelsForAzimuthElevation()