/* SPDX-License-Identifier: BSD-2-Clause */ /* * Copyright (C) 2019, Raspberry Pi (Trading) Limited * * ccm_status.h - CCM (colour correction matrix) control algorithm status */ #pragma once // The "ccm" algorithm generates an appropriate colour matrix. #ifdef __cplusplus extern "C" { #endif struct CcmStatus { double matrix[9]; double saturation; }; #ifdef __cplusplus } #endif ps://git.libcamera.org/libcamera/pinchartl/libcamera.git' title='libcamera/pinchartl/libcamera.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/test/v4l2_device/v4l2_device_test.h
blob: f22f0bb555d8bcd471c99219c09a8b47dde6ffe2 (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
29
30
31
32
33
34
35
36
37
38
39