mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
rtpbuffer: increase logging level when map fails
https://bugzilla.gnome.org/show_bug.cgi?id=756641
This commit is contained in:
parent
b424bc2e4f
commit
e3c8a82017
1 changed files with 5 additions and 5 deletions
|
@ -454,23 +454,23 @@ map_failed:
|
||||||
}
|
}
|
||||||
wrong_length:
|
wrong_length:
|
||||||
{
|
{
|
||||||
GST_DEBUG ("length check failed");
|
GST_WARNING ("length check failed");
|
||||||
goto dump_packet;
|
goto dump_packet;
|
||||||
}
|
}
|
||||||
wrong_version:
|
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;
|
goto dump_packet;
|
||||||
}
|
}
|
||||||
reserved_pt:
|
reserved_pt:
|
||||||
{
|
{
|
||||||
GST_DEBUG ("reserved PT %d found", pt);
|
GST_WARNING ("reserved PT %d found", pt);
|
||||||
goto dump_packet;
|
goto dump_packet;
|
||||||
}
|
}
|
||||||
wrong_padding:
|
wrong_padding:
|
||||||
{
|
{
|
||||||
GST_DEBUG ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)", bufsize,
|
GST_WARNING ("padding check failed (%" G_GSIZE_FORMAT " - %d < %d)",
|
||||||
header_len, padding);
|
bufsize, header_len, padding);
|
||||||
goto dump_packet;
|
goto dump_packet;
|
||||||
}
|
}
|
||||||
dump_packet:
|
dump_packet:
|
||||||
|
|
Loading…
Reference in a new issue