Welcome to mirror list, hosted at ThFree Co, Russian Federation.

meson_options.txt - github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34162422cf2eee44ae2397fd233a429d90e50120 (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
# General options

option('bitdepths',
    type: 'array',
    choices: ['8', '16'],
    description: 'Enable only specified bitdepths')

option('build_asm',
    type: 'boolean',
    value: true,
    description: 'Build asm files, if available')

option('build_tools',
    type: 'boolean',
    value: true,
    description: 'Build dav1d cli tools')

option('build_tests',
    type: 'boolean',
    value: true,
    description: 'Build dav1d tests')

option('logging',
    type: 'boolean',
    value: true,
    description: 'Print error log messages using the provided callback function')

option('testdata_tests',
    type: 'boolean',
    value: false,
    description: 'Run tests requiring the test data repository')

option('fuzzing_engine',
    type: 'combo',
    choices : ['none', 'libfuzzer', 'oss-fuzz'],
    value: 'none',
    description: 'Select the fuzzing engine')