pjsua_conf_adjust_rx_level method

int pjsua_conf_adjust_rx_level(
  1. int slot,
  2. double level
)

Adjust the signal level to be received from the specified port (to the bridge) 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_rx_level(
  int slot,
  double level,
) {
  return _pjsua_conf_adjust_rx_level(
    slot,
    level,
  );
}