~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/401_fmtp_g7221_with_bitrate_24000.py

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (1.1.11)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20140128182336-3xenud1kbnwmf3mz
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: 401_fmtp_g7221_with_bitrate_24000.py 3664 2011-07-19 03:42:28Z nanang $
 
2
import inc_sip as sip
 
3
import inc_sdp as sdp
 
4
 
 
5
# Answer with codec G722.1 should choose the same bitrate
 
6
# which in this test is 24000
 
7
 
 
8
sdp = \
 
9
"""
 
10
v=0
 
11
o=- 3428650655 3428650655 IN IP4 192.168.1.9
 
12
s=pjmedia
 
13
c=IN IP4 192.168.1.9
 
14
t=0 0
 
15
a=X-nat:0
 
16
m=audio 4000 RTP/AVP 100 101
 
17
a=rtcp:4001 IN IP4 192.168.1.9
 
18
a=rtpmap:100 G7221/16000
 
19
a=fmtp:100 bitrate=24000
 
20
a=sendrecv
 
21
a=rtpmap:101 telephone-event/8000
 
22
a=fmtp:101 0-15
 
23
"""
 
24
 
 
25
pjsua_args = "--null-audio --auto-answer 200 --add-codec G7221"
 
26
extra_headers = ""
 
27
include = ["a=rtpmap:[\d]+ G7221/16000",  # response must choose G722.1
 
28
           "fmtp:[\d]+ bitrate=24000"     # response must choose the same bitrate
 
29
          ]
 
30
exclude = []
 
31
 
 
32
sendto_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