mirror of
https://github.com/wader/fq.git
synced 2024-12-18 19:01:34 +03:00
26 lines
435 B
Go
26 lines
435 B
Go
|
package vpx
|
||
|
|
||
|
var vpxLevelNames = map[uint64]string{
|
||
|
10: "Level 1",
|
||
|
11: "Level 1.1",
|
||
|
20: "Level 2",
|
||
|
21: "Level 2.1",
|
||
|
30: "Level 3",
|
||
|
31: "Level 3.1",
|
||
|
40: "Level 4",
|
||
|
41: "Level 4.1",
|
||
|
50: "Level 5",
|
||
|
51: "Level 5.1",
|
||
|
52: "Level 5.2",
|
||
|
60: "Level 6",
|
||
|
61: "Level 6.1",
|
||
|
62: "Level 6.2",
|
||
|
}
|
||
|
|
||
|
var vpxChromeSubsamplingNames = map[uint64]string{
|
||
|
0: "4:2:0 vertical",
|
||
|
1: "4:2:0 colocated with luma (0,0)",
|
||
|
2: "4:2:2",
|
||
|
3: "4:4:4",
|
||
|
}
|