From e92a30582b1f983381dbf87cc38855e5bac45c18 Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Sat, 20 Nov 2010 15:24:05 +0000 Subject: fix a spurious RTP warning --- src/QXmppRtpChannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/QXmppRtpChannel.cpp') diff --git a/src/QXmppRtpChannel.cpp b/src/QXmppRtpChannel.cpp index 820be1b7..ba1df1bd 100644 --- a/src/QXmppRtpChannel.cpp +++ b/src/QXmppRtpChannel.cpp @@ -162,7 +162,7 @@ void QXmppRtpChannel::datagramReceived(const QByteArray &ba) } // check sequence number - if (!marker && sequence != d->incomingSequence + 1) + if (d->incomingSequence && sequence != d->incomingSequence + 1) warning(QString("RTP packet seq %1 is out of order, previous was %2") .arg(QString::number(sequence)) .arg(QString::number(d->incomingSequence))); -- cgit v1.2.3