mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
rtpjitterbuffer: remove list debug
This commit is contained in:
parent
28641e3145
commit
ae389aeb0c
1 changed files with 0 additions and 8 deletions
|
@ -609,7 +609,6 @@ static void
|
|||
queue_do_insert (RTPJitterBuffer * jbuf, GList * list, GList * item)
|
||||
{
|
||||
GQueue *queue = jbuf->packets;
|
||||
GList *walk;
|
||||
|
||||
/* It's more likely that the packet was inserted in the front of the buffer */
|
||||
if (G_LIKELY (list)) {
|
||||
|
@ -629,13 +628,6 @@ queue_do_insert (RTPJitterBuffer * jbuf, GList * list, GList * item)
|
|||
queue->head = queue->tail;
|
||||
}
|
||||
queue->length++;
|
||||
|
||||
GST_DEBUG ("head %p, tail %p", queue->head, queue->tail);
|
||||
for (walk = queue->head; walk; walk = walk->next) {
|
||||
RTPJitterBufferItem *item = (RTPJitterBufferItem *) walk;
|
||||
GST_DEBUG ("item %p, next %p, prev %p, #%d",
|
||||
item, item->next, item->prev, item->seqnum);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue