diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/stream.h | 8 |
1 files changed, 8 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 { |