From e7d4ad7ac70b086c1c20c7482b64ea3a6bb3e4e7 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Wed, 10 Aug 2016 11:26:17 -0600 Subject: [PATCH] rtpjitterbuffer: Don't warn for duplicate packets This is a normal scenario and should not be a warning. This can happen frequently when re-transmits of lost packets are enabled. https://bugzilla.gnome.org/show_bug.cgi?id=762208 --- gst/rtpmanager/rtpjitterbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtpmanager/rtpjitterbuffer.c b/gst/rtpmanager/rtpjitterbuffer.c index 380948ab8c..0ffbe54d89 100644 --- a/gst/rtpmanager/rtpjitterbuffer.c +++ b/gst/rtpmanager/rtpjitterbuffer.c @@ -1032,7 +1032,7 @@ append: /* ERRORS */ duplicate: { - GST_WARNING ("duplicate packet %d found", (gint) seqnum); + GST_DEBUG ("duplicate packet %d found", (gint) seqnum); return FALSE; } }