mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
Missed this we don't use underscores in settings in config files to prevent confusiong between variables and settings
This commit is contained in:
@@ -409,7 +409,7 @@ static switch_status_t opus_load_config(switch_bool_t reload)
|
||||
char *key = (char *) switch_xml_attr_soft(param, "name");
|
||||
char *val = (char *) switch_xml_attr_soft(param, "value");
|
||||
|
||||
if (!strcasecmp(key, "use_vbr") && !zstr(val)) {
|
||||
if (!strcasecmp(key, "use-vbr") && !zstr(val)) {
|
||||
opus_prefs.use_vbr = atoi(val);
|
||||
} else if (!strcasecmp(key, "complexity")) {
|
||||
opus_prefs.complexity = atoi(val);
|
||||
|
Reference in New Issue
Block a user