Changeset 4240 for pjproject/trunk/pjmedia/src/pjmedia/endpoint.c
- Timestamp:
- Aug 31, 2012 9:03:36 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/endpoint.c
r3999 r4240 50 50 PJMEDIA_ADD_RTPMAP_FOR_STATIC_PT; 51 51 52 /* Config to control use of RFC3890 TIAS */ 53 pj_bool_t pjmedia_add_bandwidth_tias_in_sdp = 54 PJMEDIA_ADD_BANDWIDTH_TIAS_IN_SDP; 55 52 56 53 57 … … 552 556 * (RFC3890). 553 557 */ 554 if (max_bitrate ) {558 if (max_bitrate && pjmedia_add_bandwidth_tias_in_sdp) { 555 559 const pj_str_t STR_BANDW_MODIFIER = { "TIAS", 4 }; 556 560 pjmedia_sdp_bandw *b; … … 716 720 * (RFC3890). 717 721 */ 718 if (max_bitrate ) {722 if (max_bitrate && pjmedia_add_bandwidth_tias_in_sdp) { 719 723 const pj_str_t STR_BANDW_MODIFIER = { "TIAS", 4 }; 720 724 pjmedia_sdp_bandw *b;
Note: See TracChangeset
for help on using the changeset viewer.