forked from AMWA-TV/is-04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_video_raw.json
72 lines (72 loc) · 1.87 KB
/
flow_video_raw.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a raw Video Flow",
"title": "Raw Video Flow resource",
"allOf": [
{ "$ref": "flow_video.json" },
{
"type": "object",
"required": [
"media_type",
"components"
],
"properties": {
"media_type": {
"description": "Subclassification of the format using IANA assigned media types",
"type": "string",
"enum": [
"video/raw"
]
},
"components" : {
"description" : "Array of objects describing the components",
"type" : "array",
"minItems": 1,
"items" : {
"title" : "component",
"type" : "object",
"required": [
"name",
"width",
"height",
"bit_depth"
],
"properties" :
{
"name" : {
"description" : "Name of this component",
"type" : "string",
"enum" : [
"Y",
"Cb",
"Cr",
"I",
"Ct",
"Cp",
"A",
"R",
"G",
"B",
"DepthMap"
]
},
"width" : {
"description" : "Width of this component in pixels",
"type" : "integer"
},
"height" : {
"description" : "Height of this component in pixels",
"type" : "integer"
},
"bit_depth" : {
"description" : "Number of bits used to describe each sample",
"type" : "integer"
}
}
}
}
}
}
]
}