forked from rigaya/NVEnc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.options
More file actions
65 lines (55 loc) · 1.51 KB
/
meson.options
File metadata and controls
65 lines (55 loc) · 1.51 KB
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
# NVEnc meson オプション
option('nvenc_cuda_dir',
type: 'string',
value: '',
description: 'CUDA installation path (default: auto-detect from CUDA_PATH env or /usr/local/cuda)'
)
option('enable_vapoursynth',
type: 'boolean',
value: true,
description: 'Enable VapourSynth reader'
)
option('enable_avisynth',
type: 'boolean',
value: true,
description: 'Enable AviSynth reader'
)
option('enable_libass',
type: 'boolean',
value: true,
description: 'Enable libass subtitle burn-in'
)
option('enable_libplacebo',
type: 'combo',
choices: ['auto', 'enabled', 'disabled'],
value: 'auto',
description: 'Enable libplacebo filters (auto: enable when libplacebo is detected)'
)
option('libplacebo_static',
type: 'boolean',
value: false,
description: 'Statically link libplacebo on Linux'
)
option('enable_vmaf',
type: 'combo',
choices: ['auto', 'enabled', 'disabled'],
value: 'auto',
description: 'Enable VMAF support (auto: enable when VMAF headers are detected)'
)
option('libvmaf_static',
type: 'boolean',
value: false,
description: 'Statically link libvmaf on Linux'
)
option('enable_libvship',
type: 'combo',
choices: ['auto', 'enabled', 'disabled'],
value: 'auto',
description: 'Enable libvship support for SSIMULACRA2/Butteraugli/CVVDP metrics (auto: enable when Vship headers are detected)'
)
option('enable_vulkan',
type: 'combo',
choices: ['auto', 'enabled', 'disabled'],
value: 'auto',
description: 'Enable Vulkan support (auto: enable when Vulkan is detected)'
)