-
Notifications
You must be signed in to change notification settings - Fork 229
/
meson_options.txt
55 lines (45 loc) · 1.57 KB
/
meson_options.txt
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
option('enable_libav',
type : 'feature',
value : 'auto',
description : 'Enable the libav encoder for video/audio capture')
option('enable_drm',
type : 'feature',
value : 'auto',
description : 'Enable DRM preview window support')
option('enable_egl',
type : 'feature',
value : 'auto',
description : 'Enable EGL preview window support')
option('enable_qt',
type : 'feature',
value : 'auto',
description : 'Enable QT preview window support')
option('enable_opencv',
type : 'feature',
value : 'disabled',
description : 'Enable OpenCV postprocessing support')
option('enable_tflite',
type : 'feature',
value : 'disabled',
description : 'Enable Tensorflow Lite postprocessing support')
option('neon_flags',
type : 'combo',
choices: ['arm64', 'armv8-neon', 'auto'],
value : 'auto',
description : 'User selectable arm-neon optimisation flags')
option('enable_hailo',
type : 'feature',
value : 'auto',
description : 'Enable Hailo postprocessing support')
option('download_hailo_models',
type : 'boolean',
value : true,
description : 'Download and install the Hailo postprocessing models')
option('enable_imx500',
type : 'boolean',
value : false,
description : 'Enable IMX500 postprocessing support')
option('download_imx500_models',
type : 'boolean',
value : false,
description : 'Download and install the IMX500 postprocessing models')