MCPcopy Create free account
hub / github.com/ValveSoftware/steam-audio / apply

Method apply

core/src/core/delay.cpp:192–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192float Allpass::apply(float x)
193{
194 auto vm = 0.0f;
195 mDelay.get(1, &vm);
196 auto v = x - mAm * vm;
197 mDelay.put(1, &v);
198 return mB0 * v + vm;
199}
200
201float4_t Allpass::apply(float4_t x)
202{

Callers

nothing calls this directly

Calls 7

zeroFunction · 0.70
subFunction · 0.70
mulFunction · 0.70
set1Function · 0.70
addFunction · 0.70
getMethod · 0.45
putMethod · 0.45

Tested by

no test coverage detected