Revert "Make jitter buffer message follow the same rules as the networking ones."

This reverts commit ccb3f37d5d.
This commit is contained in:
Jonathan Naylor
2017-11-28 10:05:02 +00:00
parent fce14a745b
commit 7df5da83b7
3 changed files with 7 additions and 12 deletions

View File

@@ -30,7 +30,7 @@ enum JB_STATUS {
class CJitterBuffer {
public:
CJitterBuffer(unsigned int blockSize, unsigned int blockTime, unsigned int jitterTime, unsigned int topSequenceNumber, bool debug);
CJitterBuffer(unsigned int blockSize, unsigned int blockTime, unsigned int jitterTime, unsigned int topSequenceNumber);
~CJitterBuffer();
bool addData(const unsigned char* data, unsigned int length, unsigned int sequenceNumber);
@@ -45,7 +45,6 @@ private:
unsigned int m_blockSize;
unsigned int m_blockTime;
unsigned int m_topSequenceNumber;
bool m_debug;
unsigned int m_blockCount;
CTimer m_timer;
CStopWatch m_stopWatch;