queue2: fix debug message
authorWim Taymans <wim.taymans@collabora.co.uk>
Wed, 11 Apr 2012 09:55:56 +0000 (11:55 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Wed, 11 Apr 2012 10:45:31 +0000 (12:45 +0200)
We're not writing to the offset of the buffer

plugins/elements/gstqueue2.c

index 0e3c743..c5a8cb5 100644 (file)
@@ -1624,7 +1624,7 @@ gst_queue2_create_write (GstQueue2 * queue, GstBuffer * buffer)
   data = GST_BUFFER_DATA (buffer);
 
   GST_DEBUG_OBJECT (queue, "Writing %u bytes to %" G_GUINT64_FORMAT, size,
-      GST_BUFFER_OFFSET (buffer));
+      writing_pos);
 
   while (size > 0) {
     guint to_write;