mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
a562db760c
* [mod_opus] add cfg setting to overwrite the fmtp stereo param coming from remote. Eg: incoming SDP has stereo=1 but we want a mono call so we answer with stereo=0. sprop-stereo will be set to 0 too. * [core] opus: use switch_core_max_audio_channels() with remote fmtp stereo=1 to allow disabling of stereo.
13 lines
415 B
XML
13 lines
415 B
XML
<configuration name="opus.conf">
|
|
<settings>
|
|
<param name="use-vbr" value="0"/>
|
|
<param name="use-dtx" value="1"/>
|
|
<param name="useinbandfec" value="1"/>
|
|
<param name="complexity" value="10"/>
|
|
<param name="use-jb-lookahead" value="true"/>
|
|
<param name="keep-fec-enabled" value="true"/>
|
|
<param name="adjust-bitrate" value="true"/>
|
|
<param name="mono" value="0"/>
|
|
</settings>
|
|
</configuration>
|