rtpbuffer: increase logging level when map fails
authorMiguel París Díaz <mparisdiaz@gmail.com>
Thu, 15 Oct 2015 13:32:58 +0000 (15:32 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 15 Oct 2015 13:48:08 +0000 (16:48 +0300)
https://bugzilla.gnome.org/show_bug.cgi?id=756641

gst-libs/gst/rtp/gstrtpbuffer.c

index a61051e..7632f8f 100644 (file)
@@ -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: