diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c index 327d6e3f13..32311da232 100644 --- a/gst/camerabin2/gstcamerabin2.c +++ b/gst/camerabin2/gstcamerabin2.c @@ -872,8 +872,11 @@ gst_camera_bin_create_elements (GstCameraBin * camera) camera->viewfinderbin_queue = gst_element_factory_make ("queue", "viewfinderbin-queue"); - g_object_set (camera->viewfinderbin_queue, "leaky", 2, NULL); - g_object_set (camera->imagebin_queue, "max-size-time", (guint64) 0, NULL); + g_object_set (camera->viewfinderbin_queue, "leaky", 2, "silent", TRUE, + NULL); + g_object_set (camera->imagebin_queue, "max-size-time", (guint64) 0, + "silent", TRUE, NULL); + g_object_set (camera->videobin_queue, "silent", TRUE, NULL); gst_bin_add_many (GST_BIN_CAST (camera), gst_object_ref (camera->encodebin),