Changes between Initial Version and Version 2 of Ticket #1088


Ignore:
Timestamp:
Jun 3, 2010 12:23:23 AM (14 years ago)
Author:
nanang
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1088

    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
    • Property Summary changed from Assertion when receiving SDP answer containing disabled media without rtpmap attribute to Assertion when SDP negotiation processing SDP offer containing disabled media without rtpmap attribute
  • Ticket #1088 – Description

    initial v2  
    1 Media line sample: 
     1Here is the scenario to reproduce: 
     2 1. Receiving offer with one media line disabled and no rtpmap for dynamic PT (valid): 
    23{{{ 
    3 m=audio 0 RTP/AVP 127 126 119 112 111 
    4 (no a=rtpmap following for the dynamic payload type formats) 
     4m=audio 5000 RTP/AVP 0 
     5m=video 0 RTP/AVP 100 
    56}}} 
     7 2. PJSUA answers similarly (no rtpmap for dynamic PT), e.g: 
     8{{{ 
     9m=audio 4000 RTP/AVP 0 
     10a=rtcp:4001 IN IP4 192.168.1.30 
     11a=rtpmap:0 PCMU/8000 
     12a=sendrecv 
     13m=video 0 RTP/AVP 100 
     14}}} 
     15 3. PJSUA sends re-INVITE (using latest active local SDP as above), after receiving the answer, assertion raised in SDP negotiation. 
     16 
     17The SIPp scenario can be found in {{{tests/pjsua/scripts-sipp/uac-inv-two-media-but-one-disabled-no-rtpmap.xml}}}.