pjsua_call_get_stream_info method
Get media stream info for the specified media index.
@param call_id The call identification. @param med_idx Media stream index. @param psi To be filled with the stream info.
@return PJ_SUCCESS on success or the appropriate error.
Implementation
int pjsua_call_get_stream_info(
int call_id,
int med_idx,
ffi.Pointer<pjsua_stream_info> psi,
) {
return _pjsua_call_get_stream_info(
call_id,
med_idx,
psi,
);
}