1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 17:51:06 +01:00
libtgvoip/OpusDecoder.h

57 lines
1.4 KiB
C
Raw Normal View History

2017-02-02 17:24:40 +01:00
//
// 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_OPUSDECODER_H
#define LIBTGVOIP_OPUSDECODER_H
#include "MediaStreamItf.h"
#include "opus.h"
#include "threading.h"
#include "BlockingQueue.h"
#include "BufferPool.h"
#include "EchoCanceller.h"
#include "JitterBuffer.h"
#include <stdio.h>
namespace tgvoip{
class OpusDecoder {
2017-02-02 17:24:40 +01:00
public:
virtual void Start();
virtual void Stop();
OpusDecoder(MediaStreamItf* dst);
virtual ~OpusDecoder();
2017-02-02 17:24:40 +01:00
void HandleCallback(unsigned char* data, size_t len);
void SetEchoCanceller(EchoCanceller* canceller);
2017-02-02 17:24:40 +01:00
void SetFrameDuration(uint32_t duration);
void ResetQueue();
void SetJitterBuffer(JitterBuffer* jitterBuffer);
2017-02-02 17:24:40 +01:00
private:
static size_t Callback(unsigned char* data, size_t len, void* param);
static void* StartThread(void* param);
void RunThread();
::OpusDecoder* dec;
BlockingQueue* decodedQueue;
BufferPool* bufferPool;
2017-02-02 17:24:40 +01:00
unsigned char* buffer;
unsigned char* lastDecoded;
size_t lastDecodedLen, lastDecodedOffset;
size_t outputBufferSize;
bool running;
tgvoip_thread_t thread;
Semaphore semaphore;
2017-02-02 17:24:40 +01:00
tgvoip_mutex_t mutex;
uint32_t frameDuration;
EchoCanceller* echoCanceller;
JitterBuffer* jitterBuffer;
2017-02-02 17:24:40 +01:00
};
}
2017-02-02 17:24:40 +01:00
#endif //LIBTGVOIP_OPUSDECODER_H