Boxlite aec (#465)

* 允许espbox-lite打开aec
微信模式使用小字体

* 软件回声消除

* 支持双麦采集

---------

Co-authored-by: cqm <cqm@97kid.com>
This commit is contained in:
mtdxc
2025-04-10 17:06:15 +08:00
committed by GitHub
parent 18e44ec775
commit f1ad29be3b
6 changed files with 61 additions and 26 deletions

View File

@@ -28,7 +28,7 @@ void AudioProcessor::Initialize(AudioCodec* codec, bool realtime_chat) {
afe_config_t* afe_config = afe_config_init(input_format.c_str(), NULL, AFE_TYPE_VC, AFE_MODE_HIGH_PERF);
if (realtime_chat) {
afe_config->aec_init = true;
afe_config->aec_mode = AEC_MODE_VOIP_LOW_COST;
afe_config->aec_mode = AEC_MODE_VOIP_HIGH_PERF;
} else {
afe_config->aec_init = false;
}