1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

WDSP: SNBA and EQ: replaced static methods and more...

This commit is contained in:
f4exb
2024-07-27 05:32:45 +02:00
parent 8c08f40b54
commit d3cbfe0e3c
28 changed files with 1321 additions and 1434 deletions
+5 -5
View File
@@ -195,23 +195,23 @@ void PANEL::SetPanelBinaural (RXA& rxa, int bin)
void PANEL::SetPanelRun (TXA& txa, int run)
{
txa.panel.p->run = run;
txa.panel->run = run;
}
void PANEL::SetPanelGain1 (TXA& txa, double gain)
{
txa.panel.p->gain1 = gain;
txa.panel->gain1 = gain;
//print_message ("micgainset.txt", "Set MIC Gain to", (int)(100.0 * gain), 0, 0);
}
void PANEL::SetPanelSelect (TXA& txa, int select)
{
if (select == 1)
txa.panel.p->copy = 3;
txa.panel->copy = 3;
else
txa.panel.p->copy = 0;
txa.panel->copy = 0;
txa.panel.p->inselect = select;
txa.panel->inselect = select;
}
} // namespace WDSP