Searched defs:targetGain (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DAudioBus.cpp232 void AudioBus::processWithGainFromMonoStereo(const AudioBus &sourceBus, double* lastMixGain, double targetGain, bool sumToBus) argument
238 // FIXME: Need fast path here when gain has converged on targetGain. In this case, de-zippering is no longer needed.
239 // FIXME: Need fast path when this==sourceBus && lastMixGain==targetGain==1.0 && sumToBus==false (this is a NOP)
241 // Take master bus gain into account as well as the targetGain.
242 double totalDesiredGain = m_busGain * targetGain;
335 void AudioBus::processWithGainFrom(const AudioBus &sourceBus, double* lastMixGain, double targetGain, bool sumToBus) argument
346 processWithGainFromMonoStereo(sourceBus, lastMixGain, targetGain, sumToBus);
356 void AudioBus::copyWithGainFrom(const AudioBus &sourceBus, double* lastMixGain, double targetGain) argument
358 processWithGainFrom(sourceBus, lastMixGain, targetGain, false);
361 void AudioBus::sumWithGainFrom(const AudioBus &sourceBus, double* lastMixGain, double targetGain) argument
[all...]

Completed in 48 milliseconds