1
0
Fork 0

FGCom: change default silence threshold

This commit is contained in:
Clément de l'Hamaide 2014-02-04 12:18:20 +01:00
parent c92c482f22
commit d9e8abcc99
2 changed files with 2 additions and 2 deletions

View file

@ -155,7 +155,7 @@ void FGCom::bind()
_micLevel_node->setFloatValue(1.0);
if ( !_silenceThd_node->hasValue() )
_silenceThd_node->setFloatValue(-20.0);
_silenceThd_node->setFloatValue(-35.0);
if ( !_register_node->hasValue() )
_register_node->setBoolValue(false);

View file

@ -98,7 +98,7 @@ static const char *audio_in;
static const char *audio_out;
static double level_in = 0.7;
static double level_out = 0.7;
static double silence_thd = -20.0;
static double silence_thd = -35.0;
static bool mic_boost;
static char codec_option;
static const char *callsign;