From: Anthony Minessale Date: Fri, 9 Oct 2015 17:30:35 +0000 (-0500) Subject: FS-8179 regression setting fec_decode breaks output on stereo calls X-Git-Tag: v1.6.3~1^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=393ee022b0cc7a523ed916f84d90a87ccbd86108;p=thirdparty%2Ffreeswitch.git FS-8179 regression setting fec_decode breaks output on stereo calls --- diff --git a/src/mod/codecs/mod_opus/mod_opus.c b/src/mod/codecs/mod_opus/mod_opus.c index 29ec4bf588..9b9ec670e0 100644 --- a/src/mod/codecs/mod_opus/mod_opus.c +++ b/src/mod/codecs/mod_opus/mod_opus.c @@ -953,7 +953,7 @@ static switch_status_t opus_load_config(switch_bool_t reload) opus_prefs.use_dtx = 0; opus_prefs.plpct = 20; opus_prefs.use_vbr = 0; - opus_prefs.fec_decode = 1; + //opus_prefs.fec_decode = 1; if ((settings = switch_xml_child(cfg, "settings"))) { for (param = switch_xml_child(settings, "param"); param; param = param->next) {