bugfix in the JitterBuffer: m_tail and m_head correctly initialized

git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@201 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Stefan Sayer 20 years ago
parent 7a8a8a3b9a
commit 5209fd205d

@ -71,7 +71,8 @@ void PacketAllocator::free(Packet *p)
AmJitterBuffer::AmJitterBuffer(AmRtpStream *owner)
: m_tsInited(false), m_tsDeltaInited(false), m_delayCount(0),
m_jitter(INITIAL_JITTER), m_owner(owner)
m_jitter(INITIAL_JITTER), m_owner(owner),
m_tail(NULL), m_head(NULL)
{
}

Loading…
Cancel
Save