Changeset 3694 for pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Aug 15, 2011 9:38:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r3685 r3694 3304 3304 { 3305 3305 /** 3306 * No operation 3307 */ 3308 PJSUA_CALL_VID_STRM_NO_OP, 3309 3310 /** 3306 3311 * Add a new video stream. This will add a new m=video line to 3307 3312 * the media, regardless of whether existing video is/are present … … 3351 3356 3352 3357 /** 3353 * Parameters for video stream operation on a call. 3358 * Parameters for video stream operation on a call. Application should 3359 * use #pjsua_call_vid_strm_op_param_default() to initialize this structure 3360 * with its default values. 3354 3361 */ 3355 3362 typedef struct pjsua_call_vid_strm_op_param … … 3386 3393 * PJSUA_CALL_VID_STRM_ADD and PJSUA_CALL_VID_STRM_CHANGE_CAP_DEV. 3387 3394 * 3388 * Default: capture device configured in account.3395 * Default: PJMEDIA_VID_DEFAULT_CAPTURE_DEV. 3389 3396 */ 3390 3397 pjmedia_vid_dev_index cap_dev; 3391 3398 3392 3399 } pjsua_call_vid_strm_op_param; 3400 3401 3402 /** 3403 * Initialize video stream operation param with default values. 3404 * 3405 * @param param The video stream operation param to be initialized. 3406 */ 3407 PJ_DECL(void) 3408 pjsua_call_vid_strm_op_param_default(pjsua_call_vid_strm_op_param *param); 3393 3409 3394 3410 … … 3889 3905 * @return PJ_SUCCESS on success or the appropriate error. 3890 3906 */ 3891 PJ_DECL(pj_status_t) pjsua_call_get_transport_info(pjsua_call_id call_id, 3892 unsigned med_idx, 3893 pjmedia_transport_info *t); 3907 PJ_DECL(pj_status_t) 3908 pjsua_call_get_med_transport_info(pjsua_call_id call_id, 3909 unsigned med_idx, 3910 pjmedia_transport_info *t); 3894 3911 3895 3912
Note: See TracChangeset
for help on using the changeset viewer.