2018-10-03 14:34:43 +00:00
|
|
|
//
|
|
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
|
|
// you should have received with this source code distribution.
|
|
|
|
//
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
#ifndef TGVOIP_NO_DSP
|
|
|
|
#include "webrtc_dsp/modules/audio_processing/include/audio_processing.h"
|
|
|
|
#include "webrtc_dsp/api/audio/audio_frame.h"
|
|
|
|
#endif
|
|
|
|
|
2018-10-03 14:34:43 +00:00
|
|
|
#include "EchoCanceller.h"
|
|
|
|
#include "audio/AudioOutput.h"
|
|
|
|
#include "audio/AudioInput.h"
|
|
|
|
#include "logging.h"
|
2019-02-06 18:22:38 +00:00
|
|
|
#include "VoIPServerConfig.h"
|
2018-10-03 14:34:43 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2019-02-14 07:27:45 +00:00
|
|
|
#include <math.h>
|
2018-10-03 14:34:43 +00:00
|
|
|
|
|
|
|
using namespace tgvoip;
|
|
|
|
|
|
|
|
EchoCanceller::EchoCanceller(bool enableAEC, bool enableNS, bool enableAGC){
|
|
|
|
#ifndef TGVOIP_NO_DSP
|
|
|
|
this->enableAEC=enableAEC;
|
|
|
|
this->enableAGC=enableAGC;
|
|
|
|
this->enableNS=enableNS;
|
|
|
|
isOn=true;
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
webrtc::Config extraConfig;
|
|
|
|
#ifdef TGVOIP_USE_DESKTOP_DSP
|
|
|
|
extraConfig.Set(new webrtc::DelayAgnostic(true));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
apm=webrtc::AudioProcessingBuilder().Create(extraConfig);
|
2018-10-03 14:34:43 +00:00
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
webrtc::AudioProcessing::Config config;
|
|
|
|
config.echo_canceller.enabled = enableAEC;
|
2018-10-03 14:34:43 +00:00
|
|
|
#ifndef TGVOIP_USE_DESKTOP_DSP
|
2019-02-06 18:22:38 +00:00
|
|
|
config.echo_canceller.mobile_mode = true;
|
2018-10-03 14:34:43 +00:00
|
|
|
#else
|
2019-02-06 18:22:38 +00:00
|
|
|
config.echo_canceller.mobile_mode = false;
|
2018-10-03 14:34:43 +00:00
|
|
|
#endif
|
2019-02-06 18:22:38 +00:00
|
|
|
config.high_pass_filter.enabled = enableAEC;
|
|
|
|
config.gain_controller2.enabled = enableAGC;
|
|
|
|
apm->ApplyConfig(config);
|
|
|
|
|
|
|
|
webrtc::NoiseSuppression::Level nsLevel;
|
|
|
|
#ifdef __APPLE__
|
|
|
|
switch(ServerConfig::GetSharedInstance()->GetInt("webrtc_ns_level_vpio", 0)){
|
|
|
|
#else
|
|
|
|
switch(ServerConfig::GetSharedInstance()->GetInt("webrtc_ns_level", 2)){
|
|
|
|
#endif
|
|
|
|
case 0:
|
|
|
|
nsLevel=webrtc::NoiseSuppression::Level::kLow;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
nsLevel=webrtc::NoiseSuppression::Level::kModerate;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
nsLevel=webrtc::NoiseSuppression::Level::kVeryHigh;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
default:
|
|
|
|
nsLevel=webrtc::NoiseSuppression::Level::kHigh;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
apm->noise_suppression()->set_level(nsLevel);
|
|
|
|
apm->noise_suppression()->Enable(enableNS);
|
|
|
|
if(enableAGC){
|
|
|
|
apm->gain_control()->set_mode(webrtc::GainControl::Mode::kAdaptiveDigital);
|
|
|
|
apm->gain_control()->set_target_level_dbfs(ServerConfig::GetSharedInstance()->GetInt("webrtc_agc_target_level", 9));
|
|
|
|
apm->gain_control()->enable_limiter(ServerConfig::GetSharedInstance()->GetBoolean("webrtc_agc_enable_limiter", true));
|
|
|
|
apm->gain_control()->set_compression_gain_db(ServerConfig::GetSharedInstance()->GetInt("webrtc_agc_compression_gain", 20));
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
2019-02-06 18:22:38 +00:00
|
|
|
apm->voice_detection()->set_likelihood(webrtc::VoiceDetection::Likelihood::kVeryLowLikelihood);
|
2018-10-03 14:34:43 +00:00
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
audioFrame=new webrtc::AudioFrame();
|
|
|
|
audioFrame->samples_per_channel_=480;
|
|
|
|
audioFrame->sample_rate_hz_=48000;
|
|
|
|
audioFrame->num_channels_=1;
|
|
|
|
|
|
|
|
farendQueue=new BlockingQueue<int16_t*>(11);
|
|
|
|
farendBufferPool=new BufferPool(960*2, 10);
|
|
|
|
running=true;
|
|
|
|
bufferFarendThread=new Thread(std::bind(&EchoCanceller::RunBufferFarendThread, this));
|
|
|
|
bufferFarendThread->Start();
|
2018-10-03 14:34:43 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
this->enableAEC=this->enableAGC=enableAGC=this->enableNS=enableNS=false;
|
|
|
|
isOn=true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
EchoCanceller::~EchoCanceller(){
|
|
|
|
#ifndef TGVOIP_NO_DSP
|
2019-02-06 18:22:38 +00:00
|
|
|
delete apm;
|
|
|
|
delete audioFrame;
|
2018-10-03 14:34:43 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void EchoCanceller::Start(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void EchoCanceller::Stop(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EchoCanceller::SpeakerOutCallback(unsigned char* data, size_t len){
|
|
|
|
if(len!=960*2 || !enableAEC || !isOn)
|
|
|
|
return;
|
|
|
|
#ifndef TGVOIP_NO_DSP
|
|
|
|
int16_t* buf=(int16_t*)farendBufferPool->Get();
|
|
|
|
if(buf){
|
|
|
|
memcpy(buf, data, 960*2);
|
|
|
|
farendQueue->Put(buf);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TGVOIP_NO_DSP
|
2019-02-06 18:22:38 +00:00
|
|
|
void EchoCanceller::RunBufferFarendThread(){
|
|
|
|
webrtc::AudioFrame frame;
|
|
|
|
frame.num_channels_=1;
|
|
|
|
frame.sample_rate_hz_=48000;
|
|
|
|
frame.samples_per_channel_=480;
|
2018-10-03 14:34:43 +00:00
|
|
|
while(running){
|
|
|
|
int16_t* samplesIn=farendQueue->GetBlocking();
|
|
|
|
if(samplesIn){
|
2019-02-06 18:22:38 +00:00
|
|
|
memcpy(frame.mutable_data(), samplesIn, 480*2);
|
|
|
|
apm->ProcessReverseStream(&frame);
|
|
|
|
memcpy(frame.mutable_data(), samplesIn+480, 480*2);
|
|
|
|
apm->ProcessReverseStream(&frame);
|
2018-10-03 14:34:43 +00:00
|
|
|
didBufferFarend=true;
|
2019-02-06 18:22:38 +00:00
|
|
|
farendBufferPool->Reuse(reinterpret_cast<unsigned char*>(samplesIn));
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void EchoCanceller::Enable(bool enabled){
|
|
|
|
isOn=enabled;
|
|
|
|
}
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
void EchoCanceller::ProcessInput(int16_t* inOut, size_t numSamples, bool& hasVoice){
|
2019-02-14 07:27:45 +00:00
|
|
|
#ifndef TGVOIP_NO_DSP
|
2018-10-03 14:34:43 +00:00
|
|
|
if(!isOn || (!enableAEC && !enableAGC && !enableNS)){
|
|
|
|
return;
|
|
|
|
}
|
2019-02-06 18:22:38 +00:00
|
|
|
int delay=audio::AudioInput::GetEstimatedDelay()+audio::AudioOutput::GetEstimatedDelay();
|
|
|
|
assert(numSamples==960);
|
|
|
|
|
|
|
|
memcpy(audioFrame->mutable_data(), inOut, 480*2);
|
|
|
|
if(enableAEC)
|
|
|
|
apm->set_stream_delay_ms(delay);
|
|
|
|
apm->ProcessStream(audioFrame);
|
|
|
|
if(enableVAD)
|
|
|
|
hasVoice=apm->voice_detection()->stream_has_voice();
|
|
|
|
memcpy(inOut, audioFrame->data(), 480*2);
|
|
|
|
memcpy(audioFrame->mutable_data(), inOut+480, 480*2);
|
|
|
|
if(enableAEC)
|
|
|
|
apm->set_stream_delay_ms(delay);
|
|
|
|
apm->ProcessStream(audioFrame);
|
|
|
|
if(enableVAD){
|
|
|
|
hasVoice=hasVoice || apm->voice_detection()->stream_has_voice();
|
|
|
|
}
|
|
|
|
memcpy(inOut+480, audioFrame->data(), 480*2);
|
2019-02-14 07:27:45 +00:00
|
|
|
#endif
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EchoCanceller::SetAECStrength(int strength){
|
|
|
|
#ifndef TGVOIP_NO_DSP
|
2019-02-06 18:22:38 +00:00
|
|
|
/*if(aec){
|
2018-10-03 14:34:43 +00:00
|
|
|
#ifndef TGVOIP_USE_DESKTOP_DSP
|
|
|
|
AecmConfig cfg;
|
|
|
|
cfg.cngMode=AecmFalse;
|
|
|
|
cfg.echoMode=(int16_t) strength;
|
|
|
|
WebRtcAecm_set_config(aec, cfg);
|
|
|
|
#endif
|
2019-02-06 18:22:38 +00:00
|
|
|
}*/
|
2018-10-03 14:34:43 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
void EchoCanceller::SetVoiceDetectionEnabled(bool enabled){
|
|
|
|
enableVAD=enabled;
|
2019-02-14 07:27:45 +00:00
|
|
|
#ifndef TGVOIP_NO_DSP
|
2019-02-06 18:22:38 +00:00
|
|
|
apm->voice_detection()->Enable(enabled);
|
2019-02-14 07:27:45 +00:00
|
|
|
#endif
|
2019-02-06 18:22:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
using namespace tgvoip::effects;
|
|
|
|
|
2018-10-03 14:34:43 +00:00
|
|
|
AudioEffect::~AudioEffect(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEffect::SetPassThrough(bool passThrough){
|
|
|
|
this->passThrough=passThrough;
|
|
|
|
}
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
Volume::Volume(){
|
2018-10-03 14:34:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
Volume::~Volume(){
|
2018-10-03 14:34:43 +00:00
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
}
|
2018-10-03 14:34:43 +00:00
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
void Volume::Process(int16_t* inOut, size_t numSamples){
|
|
|
|
if(level==1.0f || passThrough){
|
|
|
|
return;
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
2019-02-06 18:22:38 +00:00
|
|
|
for(size_t i=0;i<numSamples;i++){
|
|
|
|
float sample=(float)inOut[i]*multiplier;
|
|
|
|
if(sample>32767.0f)
|
|
|
|
inOut[i]=INT16_MAX;
|
|
|
|
else if(sample<-32768.0f)
|
|
|
|
inOut[i]=INT16_MIN;
|
|
|
|
else
|
|
|
|
inOut[i]=(int16_t)sample;
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
2019-02-06 18:22:38 +00:00
|
|
|
}
|
2018-10-03 14:34:43 +00:00
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
void Volume::SetLevel(float level){
|
|
|
|
this->level=level;
|
|
|
|
float db;
|
|
|
|
if(level<1.0f)
|
|
|
|
db=-50.0f*(1.0f-level);
|
|
|
|
else if(level>1.0f && level<=2.0f)
|
|
|
|
db=10.0f*(level-1.0f);
|
|
|
|
else
|
|
|
|
db=0.0f;
|
|
|
|
multiplier=expf(db/20.0f * logf(10.0f));
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
float Volume::GetLevel(){
|
|
|
|
return level;
|
|
|
|
}
|