121_sdp_with_video_static_1.py 645 B

123456789101112131415161718192021222324252627
  1. import inc_sip as sip
  2. import inc_sdp as sdp
  3. # Video uses static payload type which will cause failure
  4. # when session.c looks-up the codec in codec manager
  5. sdp = \
  6. """
  7. v=0
  8. o=- 0 0 IN IP4 127.0.0.1
  9. s=-
  10. c=IN IP4 127.0.0.1
  11. t=0 0
  12. m=audio 5000 RTP/AVP 0
  13. m=video 4000 RTP/AVP 54
  14. """
  15. pjsua_args = "--null-audio --auto-answer 200"
  16. extra_headers = ""
  17. include = ["Content-Type: application/sdp", # response must include SDP
  18. "m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+m=video 0 RTP"
  19. ]
  20. exclude = []
  21. sendto_cfg = sip.SendtoCfg("Mixed audio and video", pjsua_args, sdp, 200,
  22. extra_headers=extra_headers,
  23. resp_inc=include, resp_exc=exclude)