diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/stream.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libcamera/stream.cpp b/src/libcamera/stream.cpp index dd9092d9..b6238946 100644 --- a/src/libcamera/stream.cpp +++ b/src/libcamera/stream.cpp @@ -48,6 +48,24 @@ namespace libcamera { */ /** + * \brief Construct a stream with default parameters + */ +Stream::Stream() +{ +} + +/** + * \fn Stream::bufferPool() + * \brief Retrieve the buffer pool for the stream + * + * The buffer pool handles the buffers used to capture frames at the output of + * the stream. It is initially created empty and shall be populated with + * buffers before being used. + * + * \return A reference to the buffer pool + */ + +/** * \struct StreamConfiguration * \brief Configuration parameters for a stream * |