Source file codec_capabilities.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
type t = [
| `Draw_horiz_band
| `Dr1
| `Truncated
| `Delay
| `Small_last_frame
| `Subframes
| `Experimental
| `Channel_conf
| `Frame_threads
| `Slice_threads
| `Param_change
| `Other_threads
| `Auto_threads
| `Variable_frame_size
| `Avoid_probing
| `Intra_only
| `Lossless
| `Hardware
| `Hybrid
| `Encoder_reordered_opaque
| `Encoder_flush
]
let t: t list = [
`Encoder_flush;
`Encoder_reordered_opaque;
`Hybrid;
`Hardware;
`Lossless;
`Intra_only;
`Avoid_probing;
`Variable_frame_size;
`Auto_threads;
`Other_threads;
`Param_change;
`Slice_threads;
`Frame_threads;
`Channel_conf;
`Experimental;
`Subframes;
`Small_last_frame;
`Delay;
`Truncated;
`Dr1;
`Draw_horiz_band;
]