From e3c8a820176ba39dfae85944fa9c6ae202ec681d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Par=C3=ADs=20D=C3=ADaz?= Date: Thu, 15 Oct 2015 15:32:58 +0200 Subject: [PATCH] rtpbuffer: increase logging level when map fails https://bugzilla.gnome.org/show_bug.cgi?id=756641 --- 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 a61051e819..7632f8f942 100644 --- a/gst-libs/gst/rtp/gstrtpbuffer.c +++ b/gst-libs/gst/rtp/gstrtpbuffer.c @@ -454,23 +454,23 @@ map_failed: } wrong_length: { - GST_DEBUG ("length check failed"); + GST_WARNING ("length check failed"); goto dump_packet; } wrong_version: { - GST_DEBUG ("version check failed (%d != %d)", version, GST_RTP_VERSION); + GST_WARNING ("version check failed (%d != %d)", version, GST_RTP_VERSION); goto dump_packet; } reserved_pt: { - GST_DEBUG ("reserved PT %d found", pt); + GST_WARNING ("reserved PT %d found", pt); goto dump_packet; } wrong_padding: { - GST_DEBUG ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", bufsize, - header_len, padding); + GST_WARNING ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", + bufsize, header_len, padding); goto dump_packet; } dump_packet: