Do not display the warn if a duplicate sequence number RTP packet is received.

git-svn-id: http://voip.null.ro/svn/yate@2616 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2009-05-06 16:37:08 +00:00
parent 9ec4af603c
commit cfa182b1d5
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ void RTPReceiver::rtpData(const void* data, int len)
else
m_seqSync = seq;
}
if (m_warn) {
if (m_warn && ds) {
m_warn = false;
Debug(DebugWarn,"RTP received SEQ %u while current is %u [%p]",seq,m_seq,this);
}