blob: 93976c072ae1497459b097c1c3adb2d93c3f1ca2 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001# $Id$
2import inc_sip as sip
3import inc_sdp as sdp
4
5# Answer with codec G722.1 should choose the same bitrate
6# which in this test is 24000
7
8sdp = \
9"""
10v=0
11o=- 3428650655 3428650655 IN IP4 192.168.1.9
12s=pjmedia
13c=IN IP4 192.168.1.9
14t=0 0
15a=X-nat:0
16m=audio 4000 RTP/AVP 100 101
17a=rtcp:4001 IN IP4 192.168.1.9
18a=rtpmap:100 G7221/16000
19a=fmtp:100 bitrate=24000
20a=sendrecv
21a=rtpmap:101 telephone-event/8000
22a=fmtp:101 0-15
23"""
24
25pjsua_args = "--null-audio --auto-answer 200 --add-codec G7221"
26extra_headers = ""
27include = ["a=rtpmap:[\d]+ G7221/16000", # response must choose G722.1
28 "fmtp:[\d]+ bitrate=24000" # response must choose the same bitrate
29 ]
30exclude = []
31
32sendto_cfg = sip.SendtoCfg("Answer with G722.1 should choose bitrate 24000", pjsua_args, sdp, 200,
33 extra_headers=extra_headers,
34 resp_inc=include, resp_exc=exclude)
35