Vilent писал(а):Есть ли у Asterisk возможность работать с G729AB?
Берем последнюю ревизию chan_sip.c из SVN и в функции:
Код: Выделить всё
12801 /*! \brief Add codec offer to SDP offer/answer body in INVITE or 200 OK */
12802 static void add_codec_to_sdp(const struct sip_pvt *p,
видим следующее:
Код: Выделить всё
12835 if (ast_format_cmp(format, ast_format_g729) == AST_FORMAT_CMP_EQUAL) {
12836 /* Indicate that we don't support VAD (G.729 annex B) */
12837 ast_str_append(a_buf, 0, "a=fmtp:%d annexb=no\r\n", rtp_code);
Фраза "we don't support VAD (G.729 annex B)" наталкивает на мысль, что G.729AB НЕ ПОДДЕРЖИВАЕТСЯ.