HomeSort by relevance Sort by last modified time
    Searched refs:channelByType (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/audio/
EqualPowerPanner.cpp 64 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->data();
65 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->data();
HRTFPanner.cpp 150 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();
AudioBus.cpp 79 AudioChannel* AudioBus::channelByType(unsigned channelType)
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;
AudioBus.h 73 AudioChannel* channelByType(unsigned type);
HRTFElevation.cpp 118 AudioChannel* leftEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelLeft);
119 AudioChannel* rightEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelRight);

Completed in 404 milliseconds