diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-23 01:01:45 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-23 01:01:45 -0400 |
commit | 60e3f733241a5524610450adee897c6aca02da42 (patch) | |
tree | fc9b3a317ec88b6f99ecd00cdd03d447b8fad56d /src/settings.hpp | |
parent | 203e5669199982533900d3b2ad9a8ba12903852c (diff) | |
download | abaddon-portaudio-60e3f733241a5524610450adee897c6aca02da42.tar.gz abaddon-portaudio-60e3f733241a5524610450adee897c6aca02da42.zip |
make vad method a setting and tie it to combobox
Diffstat (limited to 'src/settings.hpp')
-rw-r--r-- | src/settings.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/settings.hpp b/src/settings.hpp index 40cb1d3..0d2e68b 100644 --- a/src/settings.hpp +++ b/src/settings.hpp @@ -53,6 +53,13 @@ public: #endif bool NotificationsPlaySound { true }; + // [voice] +#ifdef WITH_RNNOISE + std::string VAD { "rnnoise" }; +#else + std::string VAD { "gate" }; +#endif + // [windows] bool HideConsole { false }; }; |