- use wideband EVS with MIME headers

This commit is contained in:
Dmytro Bogovych 2020-06-16 10:11:53 +03:00
parent 3f797bd09c
commit ad110c3d97
1 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,10 @@ CodecList::CodecList(const Settings& settings)
mFactoryList.push_back(new GsmHrCodec::GsmHrFactory(mSettings.mGsmHrPayloadType));
#endif
mFactoryList.push_back(new EVSCodec::EVSFactory(EVSCodec::StreamParameters()));
EVSCodec::StreamParameters evs_params;
evs_params.mime = true;
evs_params.bw = WB;
mFactoryList.push_back(new EVSCodec::EVSFactory(evs_params));
}
CodecList::~CodecList()