package ffmpeg-avutil

  1. Overview
  2. Docs

Source file color_space.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
type t = [
  | `Rgb
  | `Bt709
  | `Unspecified
  | `Reserved
  | `Fcc
  | `Bt470bg
  | `Smpte170m
  | `Smpte240m
  | `Ycgco
  | `Ycocg
  | `Bt2020_ncl
  | `Bt2020_cl
  | `Smpte2085
  | `Chroma_derived_ncl
  | `Chroma_derived_cl
  | `Ictcp
  | `Ipt_c2
  | `Ycgco_re
  | `Ycgco_ro
]

let t: t list  = [
`Ycgco_ro;
`Ycgco_re;
`Ipt_c2;
`Ictcp;
`Chroma_derived_cl;
`Chroma_derived_ncl;
`Smpte2085;
`Bt2020_cl;
`Bt2020_ncl;
`Ycocg;
`Ycgco;
`Smpte240m;
`Smpte170m;
`Bt470bg;
`Fcc;
`Reserved;
`Unspecified;
`Bt709;
`Rgb;
]