~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to daemon/src/audio/speexechocancel.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-05-19 21:46:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519214637-la8rbrford5kj6m3
Tags: 1.1.0-1
* New upstream release 
  - Fixes "FTBFS with libccrtp-dev/2.0.2 from experimental" (Closes: #663282)
* NEW Maintainer: Debian VoIP Team - Thanks Francois for your work.
  - (Closes: #665789: O: sflphone -- SIP and IAX2 compatible VoIP phone)
* Added Build-Depends: libdbus-c++-bin
* Add gcc47-fixes.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef SPEEXECHOCANCEL_H
21
21
#define SPEEXECHOCANCEL_H
22
22
 
23
 
#include "global.h"
 
23
#include "sfl_types.h"
24
24
#include "noncopyable.h"
 
25
#include "ringbuffer.h"
25
26
 
26
 
class RingBuffer;
27
27
class SpeexEchoState_;
28
28
typedef SpeexEchoState_ SpeexEchoState;
29
29
class SpeexPreprocessState_;
57
57
        SpeexEchoState *echoState_;
58
58
        SpeexPreprocessState *preState_;
59
59
 
60
 
        RingBuffer *micData_;
61
 
        RingBuffer *spkrData_;
 
60
        RingBuffer micData_;
 
61
        RingBuffer spkrData_;
62
62
 
63
63
        bool spkrStopped_;
64
64