mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
rtpmanager: Don't warn for duplicate/reordered packets
This is a normal scenario and should not be a warning. https://bugzilla.gnome.org/show_bug.cgi?id=762208
This commit is contained in:
parent
13a9a7543d
commit
5a2cc41398
1 changed files with 2 additions and 2 deletions
|
@ -2810,7 +2810,7 @@ have_eos:
|
||||||
}
|
}
|
||||||
too_late:
|
too_late:
|
||||||
{
|
{
|
||||||
GST_WARNING_OBJECT (jitterbuffer, "Packet #%d too late as #%d was already"
|
GST_DEBUG_OBJECT (jitterbuffer, "Packet #%d too late as #%d was already"
|
||||||
" popped, dropping", seqnum, priv->last_popped_seqnum);
|
" popped, dropping", seqnum, priv->last_popped_seqnum);
|
||||||
priv->num_late++;
|
priv->num_late++;
|
||||||
gst_buffer_unref (buffer);
|
gst_buffer_unref (buffer);
|
||||||
|
@ -2818,7 +2818,7 @@ too_late:
|
||||||
}
|
}
|
||||||
duplicate:
|
duplicate:
|
||||||
{
|
{
|
||||||
GST_WARNING_OBJECT (jitterbuffer, "Duplicate packet #%d detected, dropping",
|
GST_DEBUG_OBJECT (jitterbuffer, "Duplicate packet #%d detected, dropping",
|
||||||
seqnum);
|
seqnum);
|
||||||
priv->num_duplicates++;
|
priv->num_duplicates++;
|
||||||
free_item (item);
|
free_item (item);
|
||||||
|
|
Loading…
Reference in a new issue