pjsua_call_get_stream_stat method

int pjsua_call_get_stream_stat(
  1. int call_id,
  2. int med_idx,
  3. Pointer<pjsua_stream_stat> stat
)

Get media stream statistic for the specified media index.

@param call_id The call identification. @param med_idx Media stream index. @param stat To be filled with the stream statistic.

@return PJ_SUCCESS on success or the appropriate error.

Implementation

int pjsua_call_get_stream_stat(
  int call_id,
  int med_idx,
  ffi.Pointer<pjsua_stream_stat> stat,
) {
  return _pjsua_call_get_stream_stat(
    call_id,
    med_idx,
    stat,
  );
}