blob: 67e013214782e8957ec2cf0164aff86ced0741ff [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 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=video 4000 RTP/AVP 54
15m=audio 5000 RTP/AVP 0
16"""
17
18pjsua_args = "--null-audio --auto-answer 200"
19extra_headers = ""
20include = ["Content-Type: application/sdp", # response must include SDP
21 "m=video 0 RTP/AVP[\\s\\S]+m=audio [1-9]+[0-9]* 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