pjsua_conf_adjust_tx_level method
Adjust the signal level to be transmitted from the bridge to the specified port by making it louder or quieter.
@param slot The conference bridge slot number. @param level Signal level adjustment. Value 1.0 means no level adjustment, while value 0 means to mute the port.
@return PJ_SUCCESS on success, or the appropriate error code.
Implementation
int pjsua_conf_adjust_tx_level(
int slot,
double level,
) {
return _pjsua_conf_adjust_tx_level(
slot,
level,
);
}