mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
echo-cancel: Allow enabling of the webrtc experimental AGC mechanism
This commit is contained in:
parent
19fb2481ea
commit
90608feac0
1 changed files with 11 additions and 1 deletions
|
|
@ -49,6 +49,7 @@ PA_C_DECL_END
|
||||||
#define DEFAULT_DRIFT_COMPENSATION false
|
#define DEFAULT_DRIFT_COMPENSATION false
|
||||||
#define DEFAULT_EXTENDED_FILTER false
|
#define DEFAULT_EXTENDED_FILTER false
|
||||||
#define DEFAULT_INTELLIGIBILITY_ENHANCER false
|
#define DEFAULT_INTELLIGIBILITY_ENHANCER false
|
||||||
|
#define DEFAULT_EXPERIMENTAL_AGC false
|
||||||
#define DEFAULT_TRACE false
|
#define DEFAULT_TRACE false
|
||||||
|
|
||||||
#define WEBRTC_AGC_MAX_VOLUME 255
|
#define WEBRTC_AGC_MAX_VOLUME 255
|
||||||
|
|
@ -65,6 +66,7 @@ static const char* const valid_modargs[] = {
|
||||||
"drift_compensation",
|
"drift_compensation",
|
||||||
"extended_filter",
|
"extended_filter",
|
||||||
"intelligibility_enhancer",
|
"intelligibility_enhancer",
|
||||||
|
"experimental_agc",
|
||||||
"trace",
|
"trace",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
@ -141,7 +143,7 @@ bool pa_webrtc_ec_init(pa_core *c, pa_echo_canceller *ec,
|
||||||
webrtc::AudioProcessing *apm = NULL;
|
webrtc::AudioProcessing *apm = NULL;
|
||||||
webrtc::ProcessingConfig pconfig;
|
webrtc::ProcessingConfig pconfig;
|
||||||
webrtc::Config config;
|
webrtc::Config config;
|
||||||
bool hpf, ns, agc, dgc, mobile, cn, ext_filter, intelligibility;
|
bool hpf, ns, agc, dgc, mobile, cn, ext_filter, intelligibility, experimental_agc;
|
||||||
int rm = -1;
|
int rm = -1;
|
||||||
pa_modargs *ma;
|
pa_modargs *ma;
|
||||||
bool trace = false;
|
bool trace = false;
|
||||||
|
|
@ -227,10 +229,18 @@ bool pa_webrtc_ec_init(pa_core *c, pa_echo_canceller *ec,
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
experimental_agc = DEFAULT_EXPERIMENTAL_AGC;
|
||||||
|
if (pa_modargs_get_value_boolean(ma, "experimental_agc", &experimental_agc) < 0) {
|
||||||
|
pa_log("Failed to parse experimental_agc value");
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
if (ext_filter)
|
if (ext_filter)
|
||||||
config.Set<webrtc::ExtendedFilter>(new webrtc::ExtendedFilter(true));
|
config.Set<webrtc::ExtendedFilter>(new webrtc::ExtendedFilter(true));
|
||||||
if (intelligibility)
|
if (intelligibility)
|
||||||
pa_log_warn("The intelligibility enhancer is not currently supported");
|
pa_log_warn("The intelligibility enhancer is not currently supported");
|
||||||
|
if (experimental_agc)
|
||||||
|
config.Set<webrtc::ExperimentalAgc>(new webrtc::ExperimentalAgc(true, WEBRTC_AGC_START_VOLUME));
|
||||||
|
|
||||||
trace = DEFAULT_TRACE;
|
trace = DEFAULT_TRACE;
|
||||||
if (pa_modargs_get_value_boolean(ma, "trace", &trace) < 0) {
|
if (pa_modargs_get_value_boolean(ma, "trace", &trace) < 0) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue