mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
d83a3d71bc
Merge in RedPhone // FREEBIE
34 lines
552 B
C++
34 lines
552 B
C++
#ifndef __CLOCK_H__
|
|
#define __CLOCK_H__
|
|
|
|
#include "AudioCodec.h"
|
|
|
|
#include <android/log.h>
|
|
|
|
class Clock {
|
|
|
|
private:
|
|
volatile uint32_t tickCount;
|
|
|
|
uint32_t dataReceived;
|
|
|
|
public:
|
|
Clock() : tickCount(0), dataReceived(0) {}
|
|
|
|
uint32_t tick(int frames) {
|
|
tickCount += (frames * SPEEX_FRAME_SIZE);
|
|
return tickCount;
|
|
}
|
|
|
|
uint32_t getTickCount() {
|
|
return tickCount;
|
|
}
|
|
|
|
uint32_t getImprovisedTimestamp(int dataLen) {
|
|
dataReceived += dataLen;
|
|
return (dataReceived / SPEEX_ENCODED_FRAME_SIZE) * SPEEX_FRAME_SIZE;
|
|
}
|
|
|
|
};
|
|
|
|
#endif |