pjsua_get_ec_tail method

int pjsua_get_ec_tail(
  1. Pointer<UnsignedInt> p_tail_ms
)

Get current echo canceller tail length.

@param p_tail_ms Pointer to receive the tail length, in miliseconds. If AEC is disabled, the value will be zero.

@return PJ_SUCCESS on success.

Implementation

int pjsua_get_ec_tail(
  ffi.Pointer<ffi.UnsignedInt> p_tail_ms,
) {
  return _pjsua_get_ec_tail(
    p_tail_ms,
  );
}