Changeset 4524 for pjproject/trunk
- Timestamp:
- May 24, 2013 4:27:59 AM (12 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r4463 r4524 5662 5662 */ 5663 5663 pj_bool_t no_smart_media_update; 5664 5665 /** 5666 * Omit RTCP SDES and BYE in outgoing RTCP packet, this setting will be 5667 * applied for both audio and video streams. Note that, when RTCP SDES 5668 * and BYE are set to be omitted, RTCP SDES will still be sent once when 5669 * the stream starts/stops and RTCP BYE will be sent once when the stream 5670 * stops. 5671 * 5672 * Default: PJ_FALSE 5673 */ 5674 pj_bool_t no_rtcp_sdes_bye; 5664 5675 }; 5665 5676 -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_aud.c
r4507 r4524 586 586 pj_log_push_indent(); 587 587 588 si->rtcp_sdes_bye_disabled = PJ_TRUE;588 si->rtcp_sdes_bye_disabled = pjsua_var.media_cfg.no_rtcp_sdes_bye; 589 589 590 590 /* Check if no media is active */ -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_vid.c
r4341 r4524 730 730 pj_log_push_indent(); 731 731 732 si->rtcp_sdes_bye_disabled = PJ_TRUE;732 si->rtcp_sdes_bye_disabled = pjsua_var.media_cfg.no_rtcp_sdes_bye;; 733 733 734 734 /* Check if no media is active */ … … 804 804 if (status != PJ_SUCCESS) 805 805 goto on_error; 806 807 if (call_med->prev_state == PJSUA_CALL_MEDIA_NONE) 808 pjmedia_vid_stream_send_rtcp_sdes(call_med->strm.v.stream); 806 809 807 810 /* Setup decoding direction */ … … 967 970 PJ_LOG(4,(THIS_FILE, "Stopping video stream..")); 968 971 pj_log_push_indent(); 972 973 pjmedia_vid_stream_send_rtcp_bye(strm); 969 974 970 975 if (call_med->strm.v.cap_win_id != PJSUA_INVALID_ID) {
Note: See TracChangeset
for help on using the changeset viewer.