1# $Id$
2import inc_sip as sip
3import inc_sdp as sdp
4
5# Video uses static payload type which will cause failure
6# when session.c looks-up the codec in codec manager
7sdp = \
8"""
9v=0
10o=- 0 0 IN IP4 127.0.0.1
11s=-
12c=IN IP4 127.0.0.1
13t=0 0
14m=audio 5000 RTP/AVP 0
15m=video 4000 RTP/AVP 54
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"
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
29