Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
192
float 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
201
float4_t Allpass::apply(float4_t x)
202
{
Callers
nothing calls this directly
Calls
7
zero
Function · 0.70
sub
Function · 0.70
mul
Function · 0.70
set1
Function · 0.70
add
Function · 0.70
get
Method · 0.45
put
Method · 0.45
Tested by
no test coverage detected