# SPDX-License-Identifier: CC0-1.0 openssl = find_program('openssl', required : true) if openssl.found() ipa_priv_key = custom_target('ipa-priv-key', output : ['ipa-priv-key.pem'], command : [gen_ipa_priv_key, '@OUTPUT@']) config_h.set('HAVE_IPA_PUBKEY', 1) ipa_sign_module = true else ipa_sign_module = false endif libcamera_cpp_args = [] libcamera_objects = [] # The 'android' subdir must be processed first, and the build targets # are included directly into the libcamera library when this is enabled. subdir('android') subdir('libcamera') subdir('ipa') subdir('lc-compliance') subdir('cam') subdir('qcam') subdir('gstreamer') subdir('v4l2') '/libcamera/vivid.git/'>libcamera/vivid.git
libcamera pipeline handler for VIVIDgit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/libcamera/pipeline/raspberrypi/delayed_controls.h
blob: 61f755f0fddd9245d3ac295ac002907439e99b1b (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
40
41
42
43
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
86
87