pjsua_call_get_vid_win method

int pjsua_call_get_vid_win(
  1. int call_id
)

Get the video window associated with the call. Note that this function will only evaluate the first video stream in the call, to query any other video stream, use pjsua_call_get_info().

@param call_id Call identification.

@return Video window, or PJSUA_INVALID_ID when the media has not been established or is not active.

Implementation

int pjsua_call_get_vid_win(
  int call_id,
) {
  return _pjsua_call_get_vid_win(
    call_id,
  );
}