summaryrefslogtreecommitdiff
path: root/test/v4l2_subdevice/meson.build
blob: d82be3c60b7559295f238e6d2ff36426990b553b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: CC0-1.0

v4l2_subdevice_tests = [
  ['list_formats',              'list_formats.cpp'],
  ['test_formats',              'test_formats.cpp'],
]

foreach t : v4l2_subdevice_tests
    exe = executable(t[0], [t[1], 'v4l2_subdevice_test.cpp'],
        dependencies : libcamera_private,
        link_with : test_libraries,
        include_directories : test_includes_internal)
    test(t[0], exe, suite : 'v4l2_subdevice', is_parallel : false)
endforeach
44' href='#n44'>44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2021, Google Inc.
 *
 * camera_buffer.h - Frame buffer handling interface definition
 */
#ifndef __ANDROID_CAMERA_BUFFER_H__
#define __ANDROID_CAMERA_BUFFER_H__

#include <hardware/camera3.h>

#include <libcamera/base/class.h>
#include <libcamera/base/span.h>
#include <libcamera/geometry.h>
#include <libcamera/pixel_format.h>

class CameraBuffer final : public libcamera::Extensible
{
	LIBCAMERA_DECLARE_PRIVATE()

public:
	CameraBuffer(buffer_handle_t camera3Buffer,
		     libcamera::PixelFormat pixelFormat,
		     const libcamera::Size &size, int flags);
	~CameraBuffer();

	bool isValid() const;

	unsigned int numPlanes() const;

	libcamera::Span<const uint8_t> plane(unsigned int plane) const;
	libcamera::Span<uint8_t> plane(unsigned int plane);

	unsigned int stride(unsigned int plane) const;
	unsigned int offset(unsigned int plane) const;
	unsigned int size(unsigned int plane) const;

	size_t jpegBufferSize(size_t maxJpegBufferSize) const;
};

#define PUBLIC_CAMERA_BUFFER_IMPLEMENTATION				\
CameraBuffer::CameraBuffer(buffer_handle_t camera3Buffer,		\
			   libcamera::PixelFormat pixelFormat,		\
			   const libcamera::Size &size, int flags)	\
	: Extensible(std::make_unique<Private>(this, camera3Buffer,	\
					       pixelFormat, size,	\
					       flags))			\
{									\
}									\
CameraBuffer::~CameraBuffer()						\
{									\
}									\
bool CameraBuffer::isValid() const					\
{									\
	return _d()->isValid();						\
}									\
unsigned int CameraBuffer::numPlanes() const				\
{									\
	return _d()->numPlanes();					\
}									\
Span<const uint8_t> CameraBuffer::plane(unsigned int plane) const	\
{									\
	return const_cast<Private *>(_d())->plane(plane);		\
}									\
Span<uint8_t> CameraBuffer::plane(unsigned int plane)			\
{									\
	return _d()->plane(plane);					\
}									\
unsigned int CameraBuffer::stride(unsigned int plane) const		\
{									\
	return _d()->stride(plane);					\
}									\
unsigned int CameraBuffer::offset(unsigned int plane) const		\
{									\
	return _d()->offset(plane);					\
}									\
unsigned int CameraBuffer::size(unsigned int plane) const		\
{									\
	return _d()->size(plane);					\
}									\
size_t CameraBuffer::jpegBufferSize(size_t maxJpegBufferSize) const	\
{									\
	return _d()->jpegBufferSize(maxJpegBufferSize);			\
}
#endif /* __ANDROID_CAMERA_BUFFER_H__ */