summaryrefslogtreecommitdiff
path: root/include/libcamera/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcamera/stream.h')
-rw-r--r--include/libcamera/stream.h8
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 {