oops, left debugging output in code

Original commit message from CVS:
oops, left debugging output in code
This commit is contained in:
Benjamin Otte 2003-10-27 22:32:37 +00:00
parent d8d210a406
commit 76855da107
2 changed files with 0 additions and 16 deletions

View file

@ -233,14 +233,6 @@ gst_buffer_store_add_buffer_func (GstBufferStore *store, GstBuffer *buffer)
store->buffers = g_list_prepend (NULL, buffer);
}
}
{
GList *walk = store->buffers;
while (walk) {
g_print (" %llu - %u\n", GST_BUFFER_OFFSET (walk->data), GST_BUFFER_SIZE (walk->data));
walk = g_list_next (walk);
}
g_print ("\n");
}
return TRUE;
}
}

View file

@ -233,14 +233,6 @@ gst_buffer_store_add_buffer_func (GstBufferStore *store, GstBuffer *buffer)
store->buffers = g_list_prepend (NULL, buffer);
}
}
{
GList *walk = store->buffers;
while (walk) {
g_print (" %llu - %u\n", GST_BUFFER_OFFSET (walk->data), GST_BUFFER_SIZE (walk->data));
walk = g_list_next (walk);
}
g_print ("\n");
}
return TRUE;
}
}