diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/dav1d/meson_options.txt | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | third_party/dav1d/meson_options.txt | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/third_party/dav1d/meson_options.txt b/third_party/dav1d/meson_options.txt new file mode 100644 index 0000000000..91a0f6ce56 --- /dev/null +++ b/third_party/dav1d/meson_options.txt @@ -0,0 +1,65 @@ +# General options + +option('bitdepths', + type: 'array', + choices: ['8', '16'], + description: 'Enable only specified bitdepths') + +option('enable_asm', + type: 'boolean', + value: true, + description: 'Build asm files, if available') + +option('enable_tools', + type: 'boolean', + value: true, + description: 'Build dav1d cli tools') + +option('enable_examples', + type: 'boolean', + value: false, + description: 'Build dav1d examples') + +option('enable_tests', + type: 'boolean', + value: true, + description: 'Build dav1d tests') + +option('enable_docs', + type: 'boolean', + value: false, + description: 'Build dav1d documentation') + +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') + +option('fuzzer_ldflags', + type: 'string', + description: 'Extra LDFLAGS used during linking of fuzzing binaries') + +option('stack_alignment', + type: 'integer', + value: 0) + +option('xxhash_muxer', + type : 'feature', + value : 'auto') + +option('trim_dsp', + type: 'combo', + choices: ['true', 'false', 'if-release'], + value: 'if-release', + description: 'Eliminate redundant DSP functions where possible') |