FS-7462: fix FMTP in the INVITE - make it use values from opus.conf.xml

This commit is contained in:
doancea 2015-04-22 16:04:07 +02:00 committed by Anthony Minessale
parent 022fddbe6a
commit 8d98bc27ef
1 changed files with 8 additions and 2 deletions

View File

@ -491,6 +491,12 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_opus_load)
settings = default_codec_settings;
if (opus_prefs.maxaveragebitrate){
settings.maxaveragebitrate = opus_prefs.maxaveragebitrate;
}
if (opus_prefs.maxplaybackrate) {
settings.maxplaybackrate = opus_prefs.maxplaybackrate;
}
for (x = 0; x < 3; x++) {