Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/audio/
DHRTFPanner.cpp150 AudioChannel* inputChannelL = inputBus->channelByType(AudioBus::ChannelLeft); in pan()
151 …AudioChannel* inputChannelR = numInputChannels > 1 ? inputBus->channelByType(AudioBus::ChannelRigh… in pan()
156 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->data(); in pan()
157 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data(); in pan()
DAudioBus.cpp79 AudioChannel* AudioBus::channelByType(unsigned channelType) in channelByType() function in WebCore::AudioBus
252 const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data(); in processWithGainFromMonoStereo()
253 …const float* sourceR = numberOfSourceChannels > 1 ? sourceBusSafe.channelByType(ChannelRight)->dat… in processWithGainFromMonoStereo()
255 float* destinationL = channelByType(ChannelLeft)->data(); in processWithGainFromMonoStereo()
256 float* destinationR = numberOfDestinationChannels > 1 ? channelByType(ChannelRight)->data() : 0; in processWithGainFromMonoStereo()
DEqualPowerPanner.cpp64 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->data(); in pan()
65 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data(); in pan()
DHRTFElevation.cpp118 AudioChannel* leftEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelLeft); in calculateKernelsForAzimuthElevation()
119 AudioChannel* rightEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelRight); in calculateKernelsForAzimuthElevation()
DAudioBus.h73 AudioChannel* channelByType(unsigned type);
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0662328 (WebCore::AudioBus::channelByType):