1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-26 12:14:39 +01:00

Fix build

This commit is contained in:
Daniil Gentili 2020-03-30 19:14:51 +02:00
parent 9ff55f6deb
commit 980a5184ff
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -71,7 +71,7 @@ private:
//BufferPool<JITTER_SLOT_SIZE, JITTER_SLOT_COUNT> bufferPool;
Mutex mutex;
int64_t lastMain = 0;
uint32_t step;
std::array<jitter_packet_t, JITTER_SLOT_COUNT> slots;
std::atomic<int64_t> nextFetchTimestamp{0}; // What frame to read next (protected for GetSeqTooLate)
std::atomic<double> minDelay{6};