diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-02-04 12:35:46 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-02-04 16:10:19 +0000 |
commit | fd6f3e2a65fe7842a9ff357299607b07a4e36047 (patch) | |
tree | 68ffc1dde9087669d92a0e1dad97e3925d74c943 | |
parent | b448bfb426067a05d92a51f3ff123898a91ea643 (diff) |
libcamera: framebuffer_allocator: Fix spelling
Fix two trivial issues in the documentation of the FrameBufferAllocater
class.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | src/libcamera/framebuffer_allocator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/framebuffer_allocator.cpp b/src/libcamera/framebuffer_allocator.cpp index 4ced10cd..e79f4a8f 100644 --- a/src/libcamera/framebuffer_allocator.cpp +++ b/src/libcamera/framebuffer_allocator.cpp @@ -33,7 +33,7 @@ LOG_DEFINE_CATEGORY(Allocator) * FrameBuffer instances. This makes libcamera a user of buffers exported by * other devices (such as displays or video encoders), or allocated from an * external allocator (such as ION on Android platforms). In some situations, - * applications do not have any mean to allocate or get hold of suitable + * applications do not have any means to allocate or get hold of suitable * buffers, for instance when no other device is involved, on Linux platforms * that lack a centralized allocator. The FrameBufferAllocator class provides a * buffer allocator that can be used in these situations. @@ -168,7 +168,7 @@ int FrameBufferAllocator::free(Stream *stream) /** * \brief Retrieve the buffers allocated for a \a stream - * \param[in] stream The stream to retrive buffers for + * \param[in] stream The stream to retrieve buffers for * * This method shall only be called after successfully allocating buffers for * \a stream with allocate(). The returned buffers are valid until free() is |