[libcamera-devel] [PATCH v3 13/27] gst: libcamerasrc: Send stream start event
Nicolas Dufresne
nicolas at ndufresne.ca
Fri Mar 6 21:26:23 CET 2020
From: Nicolas Dufresne <nicolas.dufresne at collabora.com>
Prior to sending caps, we need to send a stream-start event. This requires
generating a stream and a group id. The stream id is random for live sources and
the group id is shared across all pads.
Signed-off-by: Nicolas Dufresne <nicolas.dufresne at collabora.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
---
src/gstreamer/gstlibcamerasrc.cpp | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/gstreamer/gstlibcamerasrc.cpp b/src/gstreamer/gstlibcamerasrc.cpp
index aa91619..1680314 100644
--- a/src/gstreamer/gstlibcamerasrc.cpp
+++ b/src/gstreamer/gstlibcamerasrc.cpp
@@ -131,8 +131,19 @@ static void
gst_libcamera_src_task_enter(GstTask *task, GThread *thread, gpointer user_data)
{
GstLibcameraSrc *self = GST_LIBCAMERA_SRC(user_data);
+ GLibRecLocker lock(&self->stream_lock);
+ GstLibcameraSrcState *state = self->state;
GST_DEBUG_OBJECT(self, "Streaming thread has started");
+
+ guint group_id = gst_util_group_id_next();
+ for (GstPad *srcpad : state->srcpads_) {
+ /* Create stream-id and push stream-start. */
+ g_autofree gchar *stream_id = gst_pad_create_stream_id(srcpad, GST_ELEMENT(self), nullptr);
+ GstEvent *event = gst_event_new_stream_start(stream_id);
+ gst_event_set_group_id(event, group_id);
+ gst_pad_push_event(srcpad, event);
+ }
}
static void
--
2.24.1
More information about the libcamera-devel
mailing list