mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-03 10:07:45 +01:00
59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
|
//
|
||
|
// libtgvoip is free and unencumbered public domain software.
|
||
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
||
|
// you should have received with this source code distribution.
|
||
|
//
|
||
|
|
||
|
#ifndef LIBTGVOIP_ECHOCANCELLER_H
|
||
|
#define LIBTGVOIP_ECHOCANCELLER_H
|
||
|
|
||
|
#ifdef __APPLE__
|
||
|
#include <TargetConditionals.h>
|
||
|
#endif
|
||
|
|
||
|
#if TARGET_OS_IPHONE
|
||
|
#define TGVOIP_NO_AEC
|
||
|
#endif
|
||
|
|
||
|
#include "threading.h"
|
||
|
#include "BufferPool.h"
|
||
|
#include "BlockingQueue.h"
|
||
|
#ifndef TGVOIP_NO_AEC
|
||
|
#include "external/include/webrtc/echo_control_mobile.h"
|
||
|
//#include "external/include/webrtc/echo_cancellation.h"
|
||
|
#include "external/include/webrtc/splitting_filter_wrapper.h"
|
||
|
#include "external/include/webrtc/noise_suppression_x.h"
|
||
|
#endif
|
||
|
|
||
|
class CEchoCanceller{
|
||
|
|
||
|
public:
|
||
|
CEchoCanceller();
|
||
|
virtual ~CEchoCanceller();
|
||
|
virtual void Start();
|
||
|
virtual void Stop();
|
||
|
void SpeakerOutCallback(unsigned char* data, size_t len);
|
||
|
void Enable(bool enabled);
|
||
|
void ProcessInput(unsigned char* data, unsigned char* out, size_t len);
|
||
|
|
||
|
private:
|
||
|
bool isOn;
|
||
|
#ifndef TGVOIP_NO_AEC
|
||
|
static void* StartBufferFarendThread(void* arg);
|
||
|
void RunBufferFarendThread();
|
||
|
bool didBufferFarend;
|
||
|
tgvoip_mutex_t mutex;
|
||
|
void* state;
|
||
|
splitting_filter_t* splittingFilter;
|
||
|
splitting_filter_t* splittingFilterFarend;
|
||
|
tgvoip_thread_t bufferFarendThread;
|
||
|
CBlockingQueue* farendQueue;
|
||
|
CBufferPool* farendBufferPool;
|
||
|
bool running;
|
||
|
NsxHandle* ns;
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //LIBTGVOIP_ECHOCANCELLER_H
|