pjsua_get_ec_stat method

int pjsua_get_ec_stat(
  1. Pointer<pjmedia_echo_stat> p_stat
)

Get echo canceller statistics.

@param p_stat Pointer to receive the stat.

@return PJ_SUCCESS on success, or the appropriate error code.

Implementation

int pjsua_get_ec_stat(
  ffi.Pointer<pjmedia_echo_stat> p_stat,
) {
  return _pjsua_get_ec_stat(
    p_stat,
  );
}