summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua-lib/pjsua_aud.c
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2013-05-24 04:27:59 +0000
committerNanang Izzuddin <nanang@teluu.com>2013-05-24 04:27:59 +0000
commit915719ad7c1d30167b7381bf36357c491a23fae4 (patch)
tree3c02539b1edba06a2eb3175ab5324410aaf7a3d4 /pjsip/src/pjsua-lib/pjsua_aud.c
parent9e0fe8fa59243d8aa937982931aa5e1be7e944de (diff)
Fixed #1670:
- Added 'no_rtcp_sdes_bye' to 'pjsua_media_config'. - Modified behaviour of video stream in PJSUA to match audio stream behaviour, i.e: always send RTCP SDES when stream starts/stops and send RTCP BYE when stream stops, regardless whether 'no_rtcp_sdes_bye' is set. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4524 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src/pjsua-lib/pjsua_aud.c')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_aud.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_aud.c b/pjsip/src/pjsua-lib/pjsua_aud.c
index 0a1e98a9..beda1013 100644
--- a/pjsip/src/pjsua-lib/pjsua_aud.c
+++ b/pjsip/src/pjsua-lib/pjsua_aud.c
@@ -585,7 +585,7 @@ pj_status_t pjsua_aud_channel_update(pjsua_call_media *call_med,
PJ_LOG(4,(THIS_FILE,"Audio channel update.."));
pj_log_push_indent();
- si->rtcp_sdes_bye_disabled = PJ_TRUE;
+ si->rtcp_sdes_bye_disabled = pjsua_var.media_cfg.no_rtcp_sdes_bye;
/* Check if no media is active */
if (si->dir != PJMEDIA_DIR_NONE) {