summaryrefslogtreecommitdiff
path: root/src/libcamera/pixelformats.cpp
blob: 9377fb5e07490fae01d12d7f5d2fd52d968a6693 (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
/* 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 in a 32-bit unsigned integer. The values are
 * defined in the Linux kernel V4L2 API (see linux/videodev2.h).
 */

} /* namespace libcamera */