diff options
author | Arun Raghavan <arun@accosted.net> | 2014-07-01 11:51:21 +0530 |
---|---|---|
committer | Arun Raghavan <arun@accosted.net> | 2014-07-03 23:08:22 +0530 |
commit | 65bddd1e0cac9a21aa1d69ec03d1f9e2aed7bd57 (patch) | |
tree | b1847a950b6035d72c1d2f522fa66a1e1d8fe08e /ext | |
parent | c134930dbed62453fa8ab5b4713db84bfc209de0 (diff) | |
download | gstreamer-plugins-bad-65bddd1e0cac9a21aa1d69ec03d1f9e2aed7bd57.tar.gz |
openni2src: Mark element as a live source
https://bugzilla.gnome.org/show_bug.cgi?id=732535
Diffstat (limited to 'ext')
-rw-r--r-- | ext/openni2/gstopenni2src.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openni2/gstopenni2src.cpp b/ext/openni2/gstopenni2src.cpp index b436e42c4..e78b9bc1a 100644 --- a/ext/openni2/gstopenni2src.cpp +++ b/ext/openni2/gstopenni2src.cpp @@ -176,6 +176,7 @@ gst_openni2_src_class_init (GstOpenni2SrcClass * klass) static void gst_openni2_src_init (GstOpenni2Src * ni2src) { + gst_base_src_set_live (GST_BASE_SRC (ni2src), TRUE); gst_base_src_set_format (GST_BASE_SRC (ni2src), GST_FORMAT_TIME); } |