Revert "rtpbuffer: increase logging level when map fails"

This reverts commit e3c8a82017.

It causes too much noise in the logs.
This commit is contained in:
Sebastian Dröge 2015-10-15 22:40:50 +03:00
parent e3c8a82017
commit 79d4765525

View file

@ -454,23 +454,23 @@ map_failed:
} }
wrong_length: wrong_length:
{ {
GST_WARNING ("length check failed"); GST_DEBUG ("length check failed");
goto dump_packet; goto dump_packet;
} }
wrong_version: 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; goto dump_packet;
} }
reserved_pt: reserved_pt:
{ {
GST_WARNING ("reserved PT %d found", pt); GST_DEBUG ("reserved PT %d found", pt);
goto dump_packet; goto dump_packet;
} }
wrong_padding: wrong_padding:
{ {
GST_WARNING ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", GST_DEBUG ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", bufsize,
bufsize, header_len, padding); header_len, padding);
goto dump_packet; goto dump_packet;
} }
dump_packet: dump_packet: