summaryrefslogtreecommitdiff
path: root/src/libcamera/pipeline_handler.cpp
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2019-03-26 17:25:15 +0100
committerJacopo Mondi <jacopo@jmondi.org>2019-04-17 15:42:24 +0200
commit911bc4aa41c16eeeaf78ddb4c0a4958bdd19fb96 (patch)
treee33d864d746122c0001e5375f34227942951c27b /src/libcamera/pipeline_handler.cpp
parent4e1dc9004fca89223d54cf22bae09eff7c0c2d4b (diff)
libcamera: camera: Pass the stream set to allocate/freeBuffers()
Pipeline handlers might need to perform allocation of internal buffers, setup operations, or simple sanity check before going into the per-stream buffer allocation. As of now, PipelineHandler::allocateBuffers() is called once for each active stream, leaving no space for stream-independent configuration. Change this by providing to the pipeline handlers the full set of active streams, and ask them to loop over them to perform per-streams memory allocations and freeing. Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/libcamera/pipeline_handler.cpp')
-rw-r--r--src/libcamera/pipeline_handler.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp
index 43550c0e..911d0844 100644
--- a/src/libcamera/pipeline_handler.cpp
+++ b/src/libcamera/pipeline_handler.cpp
@@ -193,10 +193,11 @@ PipelineHandler::~PipelineHandler()
* \fn PipelineHandler::allocateBuffers()
* \brief Allocate buffers for a stream
* \param[in] camera The camera the \a stream belongs to
- * \param[in] stream The stream to allocate buffers for
+ * \param[in] streams The set of streams to allocate buffers for
*
- * This method allocates buffers internally in the pipeline handler and
- * associates them with the stream's buffer pool.
+ * This method allocates buffers internally in the pipeline handler for each
+ * stream in the \a streams buffer set, and associates them with the stream's
+ * buffer pool.
*
* The intended caller of this method is the Camera class.
*
@@ -207,9 +208,9 @@ PipelineHandler::~PipelineHandler()
* \fn PipelineHandler::freeBuffers()
* \brief Free all buffers associated with a stream
* \param[in] camera The camera the \a stream belongs to
- * \param[in] stream The stream to free buffers from
+ * \param[in] streams The set of streams to free buffers from
*
- * After a capture session has been stopped all buffers associated with the
+ * After a capture session has been stopped all buffers associated with each
* stream shall be freed.
*
* The intended caller of this method is the Camera class.