summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.com>2012-02-02 12:22:06 -0300
committerThiago Santos <thiago.sousa.santos@collabora.com>2012-02-06 10:48:32 -0300
commit9bd40e92ce4b4558be90f6f5a202812267149ebe (patch)
treeb5f857eb25836de0d4018353809d66a31ac0e096
parentddff93320dda8460c22fbe3cc0567b40fb4a0f31 (diff)
camerabin: Improve debug message about processing counter
Mention on the logs how many capture operations might have been lost
-rw-r--r--gst/camerabin/gstcamerabin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/camerabin/gstcamerabin.c b/gst/camerabin/gstcamerabin.c
index 605780e40..7ebb0bb90 100644
--- a/gst/camerabin/gstcamerabin.c
+++ b/gst/camerabin/gstcamerabin.c
@@ -3929,7 +3929,8 @@ gst_camerabin_change_state (GstElement * element, GstStateChange transition)
}
/* reset processing counter */
- GST_DEBUG_OBJECT (camera, "Reset processing counter to 0");
+ GST_DEBUG_OBJECT (camera, "Reset processing counter from %d to 0",
+ camera->processing_counter);
camera->processing_counter = 0;
g_object_notify (G_OBJECT (camera), "idle");
g_mutex_unlock (camera->capture_mutex);