summaryrefslogtreecommitdiff
path: root/gst-libs/gst/basecamerabinsrc
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>2011-09-05 14:39:20 -0300
committerThiago Santos <thiago.sousa.santos@collabora.co.uk>2011-09-05 14:39:20 -0300
commit8a56a7de6d5f2cf70dbe6efbd7c8ed74600c8565 (patch)
treed756ea59388fca333c5c9597d528c6bf3ba2cb13 /gst-libs/gst/basecamerabinsrc
parentd41af4e2f83be8b7cc1460b273a8182cd45325ff (diff)
downloadgstreamer-plugins-bad-8a56a7de6d5f2cf70dbe6efbd7c8ed74600c8565.tar.gz
camerabin2: preview: Appsink doesn't need to sync
Set sync to false on preview's pipeline appsink
Diffstat (limited to 'gst-libs/gst/basecamerabinsrc')
-rw-r--r--gst-libs/gst/basecamerabinsrc/gstcamerabinpreview.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst-libs/gst/basecamerabinsrc/gstcamerabinpreview.c b/gst-libs/gst/basecamerabinsrc/gstcamerabinpreview.c
index 9dfc1876a..b916d7f6b 100644
--- a/gst-libs/gst/basecamerabinsrc/gstcamerabinpreview.c
+++ b/gst-libs/gst/basecamerabinsrc/gstcamerabinpreview.c
@@ -146,6 +146,7 @@ gst_camerabin_create_preview_pipeline (GstElement * element,
}
g_object_set (data->appsrc, "emit-signals", FALSE, NULL);
+ g_object_set (data->appsink, "sync", FALSE, NULL);
gst_bin_add_many (GST_BIN (data->pipeline), data->appsrc, data->capsfilter,
data->appsink, csp, vscale, NULL);