From 79d4765525545c9f5cc08abe793d943dab2701a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 15 Oct 2015 22:40:50 +0300 Subject: [PATCH] Revert "rtpbuffer: increase logging level when map fails" This reverts commit e3c8a820176ba39dfae85944fa9c6ae202ec681d. It causes too much noise in the logs. --- gst-libs/gst/rtp/gstrtpbuffer.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gst-libs/gst/rtp/gstrtpbuffer.c b/gst-libs/gst/rtp/gstrtpbuffer.c index 7632f8f942..a61051e819 100644 --- a/gst-libs/gst/rtp/gstrtpbuffer.c +++ b/gst-libs/gst/rtp/gstrtpbuffer.c @@ -454,23 +454,23 @@ map_failed: } wrong_length: { - GST_WARNING ("length check failed"); + GST_DEBUG ("length check failed"); goto dump_packet; } wrong_version: { - GST_WARNING ("version check failed (%d != %d)", version, GST_RTP_VERSION); + GST_DEBUG ("version check failed (%d != %d)", version, GST_RTP_VERSION); goto dump_packet; } reserved_pt: { - GST_WARNING ("reserved PT %d found", pt); + GST_DEBUG ("reserved PT %d found", pt); goto dump_packet; } wrong_padding: { - GST_WARNING ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", - bufsize, header_len, padding); + GST_DEBUG ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", bufsize, + header_len, padding); goto dump_packet; } dump_packet: