android: Cleanup libcamera namespace usage
Usually .cpp files are equipped with using namespace libcamera; Hence, it is unnecessary mentioning the explicit namespace of libcamera at certain places. While at it, a small typo in a comment was noticed and fixed as part of this patch. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Hirokazu Honda <hiroh@chromium.org>
This commit is contained in:
parent
e6886f6352
commit
8ae20f38bf
6 changed files with 16 additions and 17 deletions
|
@ -98,7 +98,7 @@ int CameraStream::configure()
|
|||
return 0;
|
||||
}
|
||||
|
||||
int CameraStream::process(const libcamera::FrameBuffer &source,
|
||||
int CameraStream::process(const FrameBuffer &source,
|
||||
buffer_handle_t camera3Dest,
|
||||
const CameraMetadata &requestMetadata,
|
||||
CameraMetadata *resultMetadata)
|
||||
|
@ -139,7 +139,7 @@ FrameBuffer *CameraStream::getBuffer()
|
|||
return buffer;
|
||||
}
|
||||
|
||||
void CameraStream::putBuffer(libcamera::FrameBuffer *buffer)
|
||||
void CameraStream::putBuffer(FrameBuffer *buffer)
|
||||
{
|
||||
if (!allocator_)
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue