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

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

Completed in 362 milliseconds