blob: e96919f3fec0c36748d7eb3febf3de4e757074d2 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001# $Id$
2import inc_sip as sip
3import inc_sdp as sdp
4
5# Video uses dynamic payload type
6sdp = \
7"""
8v=0
9o=- 0 0 IN IP4 127.0.0.1
10s=-
11c=IN IP4 127.0.0.1
12t=0 0
13m=audio 5000 RTP/AVP 0
14m=video 4000 RTP/AVP 100
15a=rtpmap:100 myvideo/80000
16"""
17
18pjsua_args = "--null-audio --auto-answer 200"
19extra_headers = ""
20include = ["Content-Type: application/sdp", # response must include SDP
21 "m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+m=video 0 RTP/AVP"
22 ]
23exclude = []
24
25sendto_cfg = sip.SendtoCfg("Mixed audio and video", pjsua_args, sdp, 200,
26 extra_headers=extra_headers,
27 resp_inc=include, resp_exc=exclude)
28