From cfa182b1d58f63a0230cbb2d3aeb5114e95ba573 Mon Sep 17 00:00:00 2001 From: paulc Date: Wed, 6 May 2009 16:37:08 +0000 Subject: [PATCH] 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 --- libs/yrtp/session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/yrtp/session.cpp b/libs/yrtp/session.cpp index e1526d3c..65ab5c40 100644 --- a/libs/yrtp/session.cpp +++ b/libs/yrtp/session.cpp @@ -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); }