[Home]

Summary:ASTERISK-13969: SIP video phone requires numberofmediastreams > 4 (chan_sip.c)
Reporter:moshili (moshili)Labels:
Date Opened:2009-04-16 14:56:45Date Closed:2009-04-16 16:34:41
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Channels/chan_sip/Interoperability
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:I have a SIP video phone that I need to connect to Asterisk 1.6. The video phone sends a special invite message. The invite message includes an SDP part with 4 m blocks (media blocks).

Since asterisk 1.6 can handle a max of 3 m blocks, this requires making a tiny change on the ./channels/chan_sip.c file. The change will modify the following line:

if (numberofmediastreams > 3)
to be changed to:
if (numberofmediastreams > 4)

I implemented the change on Asterisk 1.6. It was successful.
Comments: