Source file swresample_options.ml
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
type dither_type = [
| `Dither_rectangular
| `Dither_triangular
| `Dither_triangular_highpass
]
let dither_type: dither_type list = [
`Dither_triangular_highpass;
`Dither_triangular;
`Dither_rectangular;
]
type engine = [
| `Engine_swr
| `Engine_soxr
]
let engine: engine list = [
`Engine_soxr;
`Engine_swr;
]
type filter_type = [
| `Filter_type_cubic
| `Filter_type_blackman_nuttall
| `Filter_type_kaiser
]
let filter_type: filter_type list = [
`Filter_type_kaiser;
`Filter_type_blackman_nuttall;
`Filter_type_cubic;
]