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.
| 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. |
| 3918 | QVector<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 |
no outgoing calls
no test coverage detected