summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2015-08-12 13:36:01 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-08-12 13:36:01 -0500
commitf8df3589cd612d4b1d3f0a062e1b9a9bcb6218b2 (patch)
tree362ffb6ab048f50270bee010dfd48dc234f569aa
parentc126afe18f9073f3ee74e45f574da421131b9fa2 (diff)
parentf68c995bc97c9b6cb4887043b344087d82aeef10 (diff)
Merge "chan_sip: Fix negotiation of iLBC 30." into 13
-rw-r--r--channels/chan_sip.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 9ba0e192b..1f45339e4 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -12811,9 +12811,6 @@ static void add_codec_to_sdp(const struct sip_pvt *p,
} else if (ast_format_cmp(format, ast_format_g723) == AST_FORMAT_CMP_EQUAL) {
/* Indicate that we don't support VAD (G.723.1 annex A) */
ast_str_append(a_buf, 0, "a=fmtp:%d annexa=no\r\n", rtp_code);
- } else if (ast_format_cmp(format, ast_format_ilbc) == AST_FORMAT_CMP_EQUAL) {
- /* Add information about us using only 20/30 ms packetization */
- ast_str_append(a_buf, 0, "a=fmtp:%d mode=%u\r\n", rtp_code, framing);
} else if (ast_format_cmp(format, ast_format_siren7) == AST_FORMAT_CMP_EQUAL) {
/* Indicate that we only expect 32Kbps */
ast_str_append(a_buf, 0, "a=fmtp:%d bitrate=32000\r\n", rtp_code);