1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 06:54:39 -04:00

Audio input: Added Fc control

This commit is contained in:
f4exb
2023-03-11 09:56:18 +01:00
parent e606805beb
commit 683bf51d0e
17 changed files with 264 additions and 40 deletions
@@ -24,6 +24,12 @@
struct AudioInputSettings {
typedef enum {
FC_POS_INFRA = 0,
FC_POS_SUPRA,
FC_POS_CENTER
} fcPos_t;
QString m_deviceName; // Including realm, as from getFullDeviceName below
int m_sampleRate;
float m_volume;
@@ -36,6 +42,7 @@ struct AudioInputSettings {
} m_iqMapping;
bool m_dcBlock;
bool m_iqImbalance;
fcPos_t m_fcPos;
bool m_useReverseAPI;
QString m_reverseAPIAddress;