MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / defaultChain

Function defaultChain

src/core/AudioEngine.cpp:3918–3929  ·  view source on GitHub ↗

Canonical default order for a fresh install — stages appear in the order they'll typically be wanted in the signal chain. Only Eq and Comp do anything today; the others are no-ops until their DSP ships.

Source from the content-addressed store, hash-verified

3916// order they'll typically be wanted in the signal chain. Only Eq and
3917// Comp do anything today; the others are no-ops until their DSP ships.
3918QVector<AudioEngine::TxChainStage> defaultChain()
3919{
3920 return {
3921 AudioEngine::TxChainStage::Gate,
3922 AudioEngine::TxChainStage::Eq,
3923 AudioEngine::TxChainStage::DeEss,
3924 AudioEngine::TxChainStage::Comp,
3925 AudioEngine::TxChainStage::Tube,
3926 AudioEngine::TxChainStage::Enh,
3927 AudioEngine::TxChainStage::Reverb,
3928 };
3929}
3930
3931// ── RX chain helpers — parallel to the TX functions above ───────────────
3932

Callers 2

setTxChainOrderMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected