Home
last modified time | relevance | path

Searched refs:vecsStereoInOut (Results 1 – 2 of 2) sorted by relevance

/dports/audio/jamulus/jamulus-r3_8_1/src/
H A Dutil.cpp307 void CAudioReverb::Process ( CVector<int16_t>& vecsStereoInOut, const bool bReverbOnLeftChan, const… in Process() argument
317 fMixedInput = 0.5f * ( vecsStereoInOut[i] + vecsStereoInOut[i + 1] ); in Process()
323 fMixedInput = vecsStereoInOut[i]; in Process()
327 fMixedInput = vecsStereoInOut[i + 1]; in Process()
368vecsStereoInOut[i] = Float2Short ( ( 1.0f - fAttenuation ) * vecsStereoInOut[i] + 0.5f * fAttenuat… in Process()
373vecsStereoInOut[i + 1] = Float2Short ( ( 1.0f - fAttenuation ) * vecsStereoInOut[i + 1] + 0.5f * f… in Process()
H A Dutil.h1059 …void Process ( CVector<int16_t>& vecsStereoInOut, const bool bReverbOnLeftChan, const float fAtten…