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
@ -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…
x
Reference in New Issue
Block a user