v4l2transform: Add more traces
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 29 Apr 2014 16:48:04 +0000 (12:48 -0400)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Thu, 8 May 2014 19:56:37 +0000 (15:56 -0400)
sys/v4l2/gstv4l2transform.c

index e155091..5d5482b 100644 (file)
@@ -317,6 +317,8 @@ gst_v4l2_transform_decide_allocation (GstBaseTransform * trans,
   GstV4l2Transform *self = GST_V4L2_TRANSFORM (trans);
   gboolean ret = FALSE;
 
+  GST_DEBUG_OBJECT (self, "called");
+
   if (gst_v4l2_object_decide_allocation (self->v4l2capture, query)) {
     GstBufferPool *pool = GST_BUFFER_POOL (self->v4l2capture->pool);
 
@@ -342,6 +344,8 @@ gst_v4l2_transform_propose_allocation (GstBaseTransform * trans,
   GstV4l2Transform *self = GST_V4L2_TRANSFORM (trans);
   gboolean ret = FALSE;
 
+  GST_DEBUG_OBJECT (self, "called");
+
   if (decide_query == NULL)
     ret = TRUE;
   else
@@ -470,7 +474,7 @@ gst_v4l2_transform_prepare_output_buffer (GstBaseTransform * trans,
   }
 
   GST_DEBUG_OBJECT (self, "Queue input buffer");
-  ret = gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (pool), inbuf);
+  ret = gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (pool), &inbuf);
   if (G_UNLIKELY (ret != GST_FLOW_OK))
     goto beach;
 
@@ -487,7 +491,7 @@ gst_v4l2_transform_prepare_output_buffer (GstBaseTransform * trans,
     goto alloc_failed;
 
   pool = self->v4l2capture->pool;
-  ret = gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (pool), *outbuf);
+  ret = gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (pool), outbuf);
 
   if (ret != GST_FLOW_OK) {
     gst_buffer_unref (*outbuf);