~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/src/sip/sipcall.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "sdp.h"
37
37
 
38
38
SIPCall::SIPCall (const CallID& id, Call::CallType type, pj_pool_t *pool) : Call (id, type)
39
 
        , _cid (0)
40
 
        , _did (0)
41
 
        , _tid (0)
42
 
        , _audiortp (new sfl::AudioRtpFactory())
43
 
        , _xferSub (NULL)
44
 
        , _invSession (NULL)
45
 
        , _local_sdp (0)
 
39
    , _cid (0)
 
40
    , _did (0)
 
41
    , _tid (0)
 
42
    , _audiortp (new sfl::AudioRtpFactory())
 
43
    , _xferSub (NULL)
 
44
    , _invSession (NULL)
 
45
    , _local_sdp (0)
46
46
{
47
 
        _debug ("SIPCall: Create new call %s", id.c_str());
 
47
    _debug ("SIPCall: Create new call %s", id.c_str());
48
48
 
49
49
    _local_sdp = new Sdp (pool);
50
50
}
51
51
 
52
52
SIPCall::~SIPCall()
53
53
{
54
 
        _debug ("SIPCall: Delete call");
 
54
    _debug ("SIPCall: Delete call");
55
55
 
56
56
    delete _audiortp;
57
57
    _audiortp = 0;