mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
we shouldn't allow G.723.1 endpoints to use VAD, just like we don't support it for G.729
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@73547 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4497,6 +4497,9 @@ static void add_codec_to_sdp(const struct sip_pvt *p, int codec, int sample_rate
|
||||
if (codec == AST_FORMAT_G729A)
|
||||
/* Indicate that we don't support VAD (G.729 annex B) */
|
||||
ast_build_string(a_buf, a_size, "a=fmtp:%d annexb=no\r\n", rtp_code);
|
||||
else if (codec == AST_FORMAT_G723_1)
|
||||
/* Indicate that we don't support VAD (G.723.1 annex A) */
|
||||
ast_build_string(a_buf, a_size, "a=fmtp:%d annexa=no\r\n", rtp_code);
|
||||
}
|
||||
|
||||
static void add_noncodec_to_sdp(const struct sip_pvt *p, int format, int sample_rate,
|
||||
|
Reference in New Issue
Block a user