forked from colin121/x264-dsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.options
65 lines (65 loc) · 1.28 KB
/
meson.options
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
option(
'input_filename',
type: 'string',
description: 'input filename',
)
option(
'bin2c',
type: 'boolean',
value: false,
description: 'use bin2c',
)
option(
'dry_run',
type: 'boolean',
value: false,
description: 'do not write any file',
)
option(
'have_tic6x',
type: 'combo',
choices: ['1', '0'],
description: 'enable TI C6X asm',
)
option(
'downsample',
type: 'combo',
choices: ['1', '2'],
description: 'downsample from 720p to 360p, 1, 2 means bilinear, bicubic',
)
option(
'padding',
type: 'combo',
choices: ['3', '1', '2'],
description: 'padding method, 1..3 means edge, reflect, symmetric',
)
option(
'scale',
type: 'combo',
choices: ['2', '1', '4'],
description: 'SCALE scale, a positive number',
)
option(
'x264_bit_depth',
type: 'combo',
choices: ['8', '10'],
description: 'bit depth, can be 8 or 10',
)
option(
'x264_chroma_format',
type: 'combo',
choices: ['1', '0', '2', '3'],
description: 'chroma format, 0..3 means 400, 420, 422, 444',
)
option(
'x264_log_level',
type: 'combo',
choices: ['2', '0', '1', '3'],
description: 'log level, 0..3 means error, warning, info, debug',
)
option(
'cmd_file',
type: 'string',
value: '/opt/ccstudio/ccs/ccs_base/c6000/include/DM6467.cmd',
description: 'TI DSP cmd filename',
)