Changeset 3901 for pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Dec 7, 2011 10:43:28 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r3891 r3901 331 331 # define PJSUA_HAS_VIDEO PJMEDIA_HAS_VIDEO 332 332 #endif 333 334 335 /** 336 * Interval between two keyframe requests, in milliseconds. 337 * 338 * Default: 500 ms 339 */ 340 #ifndef PJSUA_VID_REQ_KEYFRAME_INTERVAL 341 # define PJSUA_VID_REQ_KEYFRAME_INTERVAL 500 342 #endif 343 333 344 334 345 /** … … 3372 3383 3373 3384 /** 3385 * Enumeration of video keyframe request methods. Keyframe request is 3386 * triggered by decoder, usually when the incoming video stream cannot 3387 * be decoded properly due to missing video keyframe. 3388 */ 3389 typedef enum pjsua_vid_req_keyframe_method 3390 { 3391 /** 3392 * Requesting keyframe via SIP INFO message. Note that incoming keyframe 3393 * request via SIP INFO will always be handled even if this flag is unset. 3394 */ 3395 PJSUA_VID_REQ_KEYFRAME_SIP_INFO = 1, 3396 3397 /** 3398 * Requesting keyframe via Picture Loss Indication of RTCP feedback. 3399 * This is currently not supported. 3400 */ 3401 PJSUA_VID_REQ_KEYFRAME_RTCP_PLI = 2 3402 3403 } pjsua_vid_req_keyframe_method; 3404 3405 3406 /** 3374 3407 * Call settings. 3375 3408 */ … … 3377 3410 { 3378 3411 /** 3379 * Bitmask of pjsua_call_flag constants.3412 * Bitmask of #pjsua_call_flag constants. 3380 3413 * 3381 3414 * Default: 0 3382 3415 */ 3383 3416 unsigned flag; 3417 3418 /** 3419 * This flag controls what methods to request keyframe are allowed on 3420 * the call. Value is bitmask of #pjsua_vid_req_keyframe_method. 3421 */ 3422 unsigned req_keyframe_method; 3384 3423 3385 3424 /** … … 3649 3688 */ 3650 3689 PJSUA_CALL_VID_STRM_STOP_TRANSMIT, 3690 3691 /** 3692 * Send keyframe in the video stream. This will force the stream to 3693 * generate and send video keyframe as soon as possible. No 3694 * re-INVITE/UPDATE is to be transmitted to remote with this operation. 3695 */ 3696 PJSUA_CALL_VID_STRM_SEND_KEYFRAME 3651 3697 3652 3698 } pjsua_call_vid_strm_op; … … 4664 4710 extern const pjsip_method pjsip_message_method; 4665 4711 4712 4713 /** 4714 * The INFO method (defined in pjsua_call.c) 4715 */ 4716 extern const pjsip_method pjsip_info_method; 4666 4717 4667 4718
Note: See TracChangeset
for help on using the changeset viewer.