- make better AQuA parameters' set + fix odd logging line

This commit is contained in:
Dmytro Bogovych 2021-06-09 14:41:17 +03:00
parent 9479a0f36f
commit fbad7e07d0
2 changed files with 12 additions and 9 deletions

View File

@ -336,16 +336,19 @@ void AgentImpl::processStartSession(JsonCpp::Value& request, JsonCpp::Value& ans
sevana::aqua::config config = {
{"avlp", "off"},
{"smtnrm", "on"},
{"decor", "off"},
{"mprio", "off"},
//{"acr", "auto"},
{"miter", "1"},
{ "enorm", "off" },
{ "npnt", "auto"},
{ "enorm", "rms" },
{ "voip", "on" },
{ "g711", "on" },
{ "g711", "off" },
{ "spfrcor", "on" },
{ "grad", "off" },
{ "ratem", "%%m" },
{ "trim", "a 2" },
{ "ratem", "%m" },
{ "trim", "r 10" },
{ "output", "json" },
{ "fau", path_faults},
{ "specp", "32"}

View File

@ -147,7 +147,7 @@ void AudioStream::addData(const void* buffer, int bytes)
Lock l(mMutex);
codec = mTransmittingCodec.get();
if (nullptr == codec) {
ICELogDebug(<< "No transmitting codec selected.");
// ICELogDebug(<< "No transmitting codec selected.");
return;
}
}