pjsua_vid_win_set_pos method

int pjsua_vid_win_set_pos(
  1. int wid,
  2. Pointer<pjmedia_coord> pos
)

Set video window position. This operation is not valid for native windows (pjsua_vid_win_info.is_native=PJ_TRUE), on which native windowing API must be used instead.

@param wid The video window ID. @param pos The window position.

@return PJ_SUCCESS on success, or the appropriate error code.

Implementation

int pjsua_vid_win_set_pos(
  int wid,
  ffi.Pointer<pjmedia_coord> pos,
) {
  return _pjsua_vid_win_set_pos(
    wid,
    pos,
  );
}