diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2020-01-27 17:44:08 -0500 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-03-07 01:58:08 +0200 |
commit | 5d6db0936ff45338b3135bde1b2310fcb8f32c58 (patch) | |
tree | c4050944d30d1075ccc20ff07c11b0595fcd3398 /src/gstreamer/gstlibcamerapad.h | |
parent | db50b1072a94a0b004f5099a7def5a7d0294bb50 (diff) |
gst: pad: Add method to store retrieve pending buffers
These will be useful for streaming. The requestComplete callback will
store the buffers on each pads so that the _run() can pick them up
and push them through the pads from a streaming thread.
Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/gstreamer/gstlibcamerapad.h')
-rw-r--r-- | src/gstreamer/gstlibcamerapad.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gstreamer/gstlibcamerapad.h b/src/gstreamer/gstlibcamerapad.h index f7dfc281..2e9ec202 100644 --- a/src/gstreamer/gstlibcamerapad.h +++ b/src/gstreamer/gstlibcamerapad.h @@ -26,4 +26,8 @@ void gst_libcamera_pad_set_pool(GstPad *pad, GstLibcameraPool *pool); libcamera::Stream *gst_libcamera_pad_get_stream(GstPad *pad); +void gst_libcamera_pad_queue_buffer(GstPad *pad, GstBuffer *buffer); + +GstFlowReturn gst_libcamera_pad_push_pending(GstPad *pad); + #endif /* __GST_LIBCAMERA_PAD_H__ */ |