Merge "res_pjsip_sdp_rtp: No rtpmap for static RTP payload IDs in SDP."

This commit is contained in:
Jenkins2
2017-04-26 10:44:00 -05:00
committed by Gerrit Code Review
4 changed files with 26 additions and 15 deletions

View File

@@ -13097,7 +13097,7 @@ static void add_codec_to_sdp(const struct sip_pvt *p,
/* Opus mandates 2 channels in rtpmap */
if (ast_format_cmp(format, ast_format_opus) == AST_FORMAT_CMP_EQUAL) {
ast_str_append(a_buf, 0, "a=rtpmap:%d %s/%u/2\r\n", rtp_code, mime, rate);
} else if ((35 <= rtp_code) || !(sip_cfg.compactheaders)) {
} else if ((AST_RTP_PT_LAST_STATIC < rtp_code) || !(sip_cfg.compactheaders)) {
ast_str_append(a_buf, 0, "a=rtpmap:%d %s/%u\r\n", rtp_code, mime, rate);
}