mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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:
parent
e3c8a82017
commit
79d4765525
1 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue