~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_0.py

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: 125_sdp_with_multi_audio_0.py 3711 2011-08-18 17:31:46Z nanang $
2
 
import inc_sip as sip
3
 
import inc_sdp as sdp
4
 
 
5
 
# Multiple good m=audio lines! The current algorithm in pjsua-lib will
6
 
# select the first audio (note that in 1.x it will select the last audio)
7
 
sdp = \
8
 
"""
9
 
v=0
10
 
o=- 0 0 IN IP4 127.0.0.1
11
 
s=-
12
 
c=IN IP4 127.0.0.1
13
 
t=0 0
14
 
m=audio 5000 RTP/AVP 0
15
 
m=audio 4000 RTP/AVP 0
16
 
m=audio 3000 RTP/AVP 0
17
 
"""
18
 
 
19
 
pjsua_args = "--null-audio --auto-answer 200"
20
 
extra_headers = ""
21
 
include = ["Content-Type: application/sdp",     # response must include SDP
22
 
           "m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+m=audio 0 RTP/AVP[\\s\\S]+m=audio 0 RTP/AVP"
23
 
           ]
24
 
exclude = []
25
 
 
26
 
sendto_cfg = sip.SendtoCfg("Mutiple good m=audio lines", pjsua_args, sdp, 200,
27
 
                           extra_headers=extra_headers,
28
 
                           resp_inc=include, resp_exc=exclude) 
29