pjsua_conf_get_signal_level method
int
pjsua_conf_get_signal_level(
- int slot,
- Pointer<
UnsignedInt> tx_level, - Pointer<
UnsignedInt> rx_level
Get last signal level transmitted to or received from the specified port. The signal level is an integer value in zero to 255, with zero indicates no signal, and 255 indicates the loudest signal level.
@param slot The conference bridge slot number. @param tx_level Optional argument to receive the level of signal transmitted to the specified port (i.e. the direction is from the bridge to the port). @param rx_level Optional argument to receive the level of signal received from the port (i.e. the direction is from the port to the bridge).
@return PJ_SUCCESS on success.
Implementation
int pjsua_conf_get_signal_level(
int slot,
ffi.Pointer<ffi.UnsignedInt> tx_level,
ffi.Pointer<ffi.UnsignedInt> rx_level,
) {
return _pjsua_conf_get_signal_level(
slot,
tx_level,
rx_level,
);
}