mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +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:
|
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:
|
||||||
|
|
Loading…
Reference in a new issue