mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 08:35:07 +03:00
libcamera: buffer: Add dmabuf file descriptors
In addition to referencing buffer memory by index, add support to referencing it using dmabuf file descriptors. This will be used to reference buffer memory allocated outside of libcamera and import it. The dmabuf file descriptors are stored in an array in the Buffer class, and a new Stream::createBuffer() overload is added to construct a buffer from dmabuf file descriptor. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
parent
99e1e786b4
commit
f1199a1011
5 changed files with 67 additions and 2 deletions
|
@ -75,6 +75,7 @@ public:
|
|||
Stream();
|
||||
|
||||
std::unique_ptr<Buffer> createBuffer(unsigned int index);
|
||||
std::unique_ptr<Buffer> createBuffer(const std::array<int, 3> &fds);
|
||||
|
||||
BufferPool &bufferPool() { return bufferPool_; }
|
||||
std::vector<BufferMemory> &buffers() { return bufferPool_.buffers(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue