18 #include <libcamera/base/span.h> 40 Span<Plane>
planes() {
return planes_; }
41 Span<const Plane>
planes()
const {
return planes_; }
46 std::vector<Plane> planes_;
55 static constexpr
unsigned int kInvalidOffset = std::numeric_limits<unsigned int>::max();
57 unsigned int offset = kInvalidOffset;
63 const std::vector<Plane> &
planes,
unsigned int cookie = 0);
65 const std::vector<Plane> &
planes()
const {
return planes_; }
69 unsigned int cookie()
const {
return cookie_; }
70 void setCookie(
unsigned int cookie) { cookie_ = cookie; }
72 std::unique_ptr<Fence> releaseFence();
79 std::vector<Plane> planes_;
RAII-style wrapper for file descriptors.
Definition: shared_fd.h:16
Utilities to help constructing class interfaces.
unsigned int cookie() const
Retrieve the cookie.
Definition: framebuffer.h:69
Top-level libcamera namespace.
Definition: backtrace.h:17
unsigned int length
The plane length in bytes.
Definition: framebuffer.h:58
const FrameMetadata & metadata() const
Retrieve the dynamic metadata.
Definition: framebuffer.h:67
Frame buffer data and its associated dynamic metadata.
Definition: framebuffer.h:49
void setCookie(unsigned int cookie)
Set the cookie.
Definition: framebuffer.h:70
V4L2VideoDevice object and API.
Definition: v4l2_videodevice.h:186
#define LIBCAMERA_DECLARE_PRIVATE()
Declare private data for a public class.
A frame capture request.
Definition: request.h:30
Base class to manage private data through a d-pointer.
Definition: class.h:61
#define LIBCAMERA_DISABLE_COPY_AND_MOVE(klass)
Disable copy and move construction and assignment of the klass.
SharedFD fd
The dmabuf file descriptor.
Definition: framebuffer.h:56
A memory region to store a single plane of a frame.
Definition: framebuffer.h:54
const std::vector< Plane > & planes() const
Retrieve the static plane descriptors.
Definition: framebuffer.h:65