Opened 18 years ago
Closed 18 years ago
#202 closed defect (fixed)
Fix error when telephone-event is set as the first format in SDP (thanks Chris Hamilton)
Reported by: | bennylp | Owned by: | bennylp |
---|---|---|---|
Priority: | normal | Milestone: | release-0.5.10.3 |
Component: | pjmedia | Version: | 0.5.10.2 |
Keywords: | Cc: | ||
Backport to 1.x milestone: | Backported: |
Description (last modified by bennylp)
Some client (Gnome ekiga 2.0.3) sends SDP with telephone-event as the first format in SDP m= line, and this causes pjmedia to raise assertion error in pjmedia_stream_info_from_sdp in pjmedia/session.c:
pj_assert(PJMEDIA_RTP_PT_TELEPHONE_EVENTS==0 || pt != PJMEDIA_RTP_PT_TELEPHONE_EVENTS);.
Change History (1)
comment:1 Changed 18 years ago by bennylp
- Description modified (diff)
- Resolution set to fixed
- Status changed from new to closed
- Summary changed from Fix telephone-event order in SDP (thanks Chris Hamilton) to Fix error when telephone-event is set as the first format in SDP (thanks Chris Hamilton)
Note: See
TracTickets for help on using
tickets.
Fixed in r1107:
Thanks Chris Hamilton <chamilton .at. cs.dal.ca> for the patch.