[Home]

Summary:ASTERISK-05740: If using G729 as Codec, Asterisk adds an option line, telling CPE to disable annexb
Reporter:Anders Kjærgaard Jørgensen (anjo03)Labels:
Date Opened:2005-11-30 03:47:52.000-0600Date Closed:2005-11-30 05:07:42.000-0600
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:This optionline in the SDP headers, dont end with carriage-return/new-line, which makes the CPE unable to parse it.

****** ADDITIONAL INFORMATION ******

chan_sip.c line 4270:

ast_build_string(a_buf, a_size, "a=fmtp:%d annexb=no", rtp_code);

should be changed to:

ast_build_string(a_buf, a_size, "a=fmtp:%d annexb=no\r\n", rtp_code);
Comments:By: BJ Weschke (bweschke) 2005-11-30 05:07:06.000-0600

duplicate of 5780 which has already been committed.