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

« back to all changes in this revision

Viewing changes to sflphone-common/src/audio/codecs/speexcodec_ub.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2011-04-05 14:14:13 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110405141413-hbwbunfsxpn2rtre
Tags: 0.9.13-1
* New upstream release
  - remove Debian patch (applied upstream)
* Fix watch file
* Remove unnecessary versioned dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
{
38
38
 
39
39
    public:
40
 
        Speex (int payload=0)
 
40
        Speex (int payload=112)
41
41
            : AudioCodec (payload, "speex"),
42
42
              _speexModePtr (NULL),
43
43
              _speex_dec_bits(),
50
50
            _channel = 1;
51
51
            _bitrate = 0;
52
52
            _bandwidth = 0;
 
53
            _hasDynamicPayload = true;
53
54
            initSpeex();
54
55
        }
55
56