pjsua_call_get_stream_stat method
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,
);
}