summaryrefslogtreecommitdiff
path: root/src/libcamera/pixelformats.cpp
blob: c03335400b709d9b8bafcc1e255e202a9665002d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * pixelformats.cpp - libcamera pixel formats
 */

#include <libcamera/pixelformats.h>

/**
 * \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 as a 32-bit unsigned integer. The values are
 * defined in the Linux kernel DRM/KMS API (see linux/drm_fourcc.h).
 *
 * \todo Add support for format modifiers
 */

} /* namespace libcamera */