File tree Expand file tree Collapse file tree 4 files changed +0
-63
lines changed
typescript-definitions/src Expand file tree Collapse file tree 4 files changed +0
-63
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,6 @@ The RenderRequirement object contains the following fields:
132132| resolution.width | NumberConstraint | | | Specifies renderer width resolution requirement. |
133133| resolution.height | NumberConstraint | | | Specifies renderer height resolution requirement. |
134134| frameRate | NumberConstraint | | | Specifies renderer frameRate requirement. |
135- | colorSpace | StringConstraint | | | Specifies renderer color-space requirement. Allowed values are "sRGB" |
136135
137136##### NumberConstraint
138137
Original file line number Diff line number Diff line change 9999 "frameRate" : {
100100 "description" : " If set, specifies requirements for frame rate of the Renderer. Example: 60 fps" ,
101101 "$ref" : " https://ograf.ebu.io/v1-draft-0/specification/json-schemas/lib/constraints/number.json"
102- },
103- "colorSpace" : {
104- "description" : " If set, specifies requirements for the colorSpace of the Renderer." ,
105- "allOf" : [
106- {
107-
108- "$ref" : " https://ograf.ebu.io/v1-draft-0/specification/json-schemas/lib/constraints/string.json"
109- },
110- {
111- "type" : " object" ,
112- "properties" : {
113- "exact" : {
114- "oneOf" : [
115- {
116- "type" : " string" ,
117- "enum" : [
118- " sRGB"
119- ]
120- },
121- {
122- "type" : " array" ,
123- "items" : {
124- "type" : " string" ,
125- "enum" : [
126- " sRGB"
127- ]
128- }
129- }
130- ]
131- },
132- "ideal" : {
133- "oneOf" : [
134- {
135- "type" : " string" ,
136- "enum" : [
137- " sRGB"
138- ]
139- },
140- {
141- "type" : " array" ,
142- "items" : {
143- "type" : " string" ,
144- "enum" : [
145- " sRGB"
146- ]
147- }
148- }
149- ]
150- }
151- }
152- }
153- ]
154102 }
155103
156104 },
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ export type RenderCharacteristics = {
1111 } & VendorExtend ;
1212 /** Which frameRate the renderer will be rendering in. Examples: 50, 60, 29.97 */
1313 frameRate ?: number ;
14- /** Color space. If not set, assumed to be "sRGB" */
15- colorSpace ?: "sRGB" ; // TODO: Add others here
1614
1715 // Ideas for future:
1816 // webcamInputs
Original file line number Diff line number Diff line change @@ -524,14 +524,6 @@ export interface HttpsOgrafEbuIoV1Draft0SpecificationJsonSchemasGraphicsSchemaJs
524524 [ k : string ] : unknown ;
525525 } ;
526526 frameRate ?: HttpsOgrafEbuIoV1Draft0SpecificationJsonSchemasLibConstraintsNumberJson1 ;
527- /**
528- * If set, specifies requirements for the colorSpace of the Renderer.
529- */
530- colorSpace ?: HttpsOgrafEbuIoV1Draft0SpecificationJsonSchemasLibConstraintsStringJson & {
531- exact ?: "sRGB" | "sRGB" [ ] ;
532- ideal ?: "sRGB" | "sRGB" [ ] ;
533- [ k : string ] : unknown ;
534- } ;
535527 /**
536528 * This interface was referenced by `undefined`'s JSON-Schema definition
537529 * via the `patternProperty` "^v_.*".
You can’t perform that action at this time.
0 commit comments