From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- third_party/dav1d/meson_options.txt | 70 +++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 third_party/dav1d/meson_options.txt (limited to 'third_party/dav1d/meson_options.txt') diff --git a/third_party/dav1d/meson_options.txt b/third_party/dav1d/meson_options.txt new file mode 100644 index 0000000000..c04deffd73 --- /dev/null +++ b/third_party/dav1d/meson_options.txt @@ -0,0 +1,70 @@ +# 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_seek_stress', + type: 'boolean', + value: false, + description: 'Build seek_stress test tool') + +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') -- cgit v1.2.3