diff options
-rw-r--r-- | include/libcamera/stream.h | 8 | ||||
-rw-r--r-- | src/libcamera/stream.cpp | 18 |
2 files changed, 26 insertions, 0 deletions
diff --git a/include/libcamera/stream.h b/include/libcamera/stream.h index 89067836..111f2c93 100644 --- a/include/libcamera/stream.h +++ b/include/libcamera/stream.h @@ -7,10 +7,18 @@ #ifndef __LIBCAMERA_STREAM_H__ #define __LIBCAMERA_STREAM_H__ +#include <libcamera/buffer.h> + namespace libcamera { class Stream final { +public: + Stream(); + BufferPool &bufferPool() { return bufferPool_; } + +private: + BufferPool bufferPool_; }; struct StreamConfiguration { 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 * |