forked from raspberrypi/rpicam-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
35 lines (29 loc) · 999 Bytes
/
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
option('enable_libav',
type : 'boolean',
value : true,
description : 'Enable the libav encoder for video/audio capture')
option('enable_drm',
type : 'boolean',
value : true,
description : 'Enable DRM preview window support')
option('enable_egl',
type : 'boolean',
value : true,
description : 'Enable EGL preview window support')
option('enable_qt',
type : 'boolean',
value : true,
description : 'Enable QT preview window support')
option('enable_opencv',
type : 'boolean',
value : true,
description : 'Enable OpenCV postprocessing support')
option('enable_tflite',
type : 'boolean',
value : false,
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')