1
1
mirror of https://github.com/wader/fq.git synced 2024-12-18 10:52:44 +03:00
fq/format/vpx/vpx.go
Mattias Wadman 970465996c Init
2021-09-12 13:08:42 +02:00

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",
}