From afd7ad5f9dbef7f31162b9a49b9f85c0a309a3a0 Mon Sep 17 00:00:00 2001 From: Daniel Scally Date: Fri, 13 Jan 2023 16:27:10 +0000 Subject: lib/video-source: Add video_source_import_buffers We need to be able to place encoded data into the sink device's bufs. To facilitate that add a video_source operation that allows the source to import buffers from the sink. Add a .import_buffers() callback so that the libcamera-source can access a sink's buffers. Reviewed-by: Kieran Bingham Signed-off-by: Daniel Scally --- lib/video-source.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/video-source.c') diff --git a/lib/video-source.c b/lib/video-source.c index 17f008a..78020f2 100644 --- a/lib/video-source.c +++ b/lib/video-source.c @@ -45,6 +45,12 @@ int video_source_export_buffers(struct video_source *src, return src->ops->export_buffers(src, buffers); } +int video_source_import_buffers(struct video_source *src, + struct video_buffer_set *buffers) +{ + return src->ops->import_buffers(src, buffers); +} + int video_source_free_buffers(struct video_source *src) { return src->ops->free_buffers(src); -- cgit v1.2.3