FGCom: change default silence threshold
This commit is contained in:
parent
c92c482f22
commit
d9e8abcc99
2 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ void FGCom::bind()
|
||||||
_micLevel_node->setFloatValue(1.0);
|
_micLevel_node->setFloatValue(1.0);
|
||||||
|
|
||||||
if ( !_silenceThd_node->hasValue() )
|
if ( !_silenceThd_node->hasValue() )
|
||||||
_silenceThd_node->setFloatValue(-20.0);
|
_silenceThd_node->setFloatValue(-35.0);
|
||||||
|
|
||||||
if ( !_register_node->hasValue() )
|
if ( !_register_node->hasValue() )
|
||||||
_register_node->setBoolValue(false);
|
_register_node->setBoolValue(false);
|
||||||
|
|
|
@ -98,7 +98,7 @@ static const char *audio_in;
|
||||||
static const char *audio_out;
|
static const char *audio_out;
|
||||||
static double level_in = 0.7;
|
static double level_in = 0.7;
|
||||||
static double level_out = 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 bool mic_boost;
|
||||||
static char codec_option;
|
static char codec_option;
|
||||||
static const char *callsign;
|
static const char *callsign;
|
||||||
|
|
Loading…
Reference in a new issue