From 656d8757347f1f9f5df93da863f66fa589cee063 Mon Sep 17 00:00:00 2001 From: Jacopo Mondi Date: Fri, 25 Oct 2019 18:09:51 +0200 Subject: libcamera: Define a PixelFormat type for application-facing formats Define a PixelFormat type as a simple typedef to an uint32_t. The usage of a dedicated type creates a cleaner and more self-described API. Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/libcamera/meson.build | 1 + src/libcamera/pixelformats.cpp | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 src/libcamera/pixelformats.cpp (limited to 'src') diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index d329820b..f201f408 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -25,6 +25,7 @@ libcamera_sources = files([ 'message.cpp', 'object.cpp', 'pipeline_handler.cpp', + 'pixelformats.cpp', 'process.cpp', 'request.cpp', 'signal.cpp', diff --git a/src/libcamera/pixelformats.cpp b/src/libcamera/pixelformats.cpp new file mode 100644 index 00000000..9377fb5e --- /dev/null +++ b/src/libcamera/pixelformats.cpp @@ -0,0 +1,26 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2019, Google Inc. + * + * pixelformats.cpp - libcamera pixel formats + */ + +#include + +/** + * \file pixelformats.h + * \brief libcamera pixel formats + */ + +namespace libcamera { + +/** + * \typedef PixelFormat + * \brief libcamera image pixel format + * + * The PixelFormat type describes the format of images in the public libcamera + * API. It stores a FourCC value in a 32-bit unsigned integer. The values are + * defined in the Linux kernel V4L2 API (see linux/videodev2.h). + */ + +} /* namespace libcamera */ -- cgit v1.2.1