Skip to content

Commit c618447

Browse files
committed
message
1 parent b7b80b3 commit c618447

File tree

1 file changed

+57
-3
lines changed

1 file changed

+57
-3
lines changed

tools/json_generator/output/AVInput/AVInput.json

Lines changed: 57 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,37 @@
221221
]
222222
}
223223
},
224+
"getVRRSupport":{
225+
"summary": "Returns the EDID VRR bit value.",
226+
"params": {
227+
"type":"object",
228+
"properties": {
229+
"portId":{
230+
"$ref": "#/definitions/portId"
231+
}
232+
},
233+
"required": [
234+
"portid"
235+
]
236+
},
237+
"result": {
238+
"type": "object",
239+
"properties": {
240+
"vrrSupport": {
241+
"summary": "The VRR bit value in edid",
242+
"type": "boolean",
243+
"example": true
244+
},
245+
"success": {
246+
"$ref": "#/common/success"
247+
}
248+
},
249+
"required": [
250+
"vrrSupport",
251+
"success"
252+
]
253+
}
254+
},
224255
"getEdidVersion":{
225256
"summary": "Returns the EDID version.",
226257
"params": {
@@ -491,6 +522,29 @@
491522
"$ref": "#/common/result"
492523
}
493524
},
525+
"setVRRSupport": {
526+
"summary": "Sets an HDMI VRR bit in EDID.",
527+
"params": {
528+
"type":"object",
529+
"properties": {
530+
"portId":{
531+
"$ref": "#/definitions/portId"
532+
},
533+
"vrrSupport":{
534+
"summary": "The VRR support in EDID",
535+
"type": "boolean",
536+
"example": true
537+
}
538+
},
539+
"required": [
540+
"portId",
541+
"vrrSupport"
542+
]
543+
},
544+
"result": {
545+
"$ref": "#/common/result"
546+
}
547+
},
494548
"setEdidVersion": {
495549
"summary": "Sets an HDMI EDID version.",
496550
"params": {
@@ -652,7 +706,7 @@
652706
"type": "object",
653707
"properties": {
654708
"mode": {
655-
"summary": "The current game feature status. Mode is required only for ALLM. Need to add support for future game features",
709+
"summary": "The current status of the game features like ALLM, VRR-HDMI, VRR-FREESYNC, VRR-FREESYNC-PREMIUM and VRR-FREESYNC-PREMIUM-PRO.",
656710
"type": "boolean",
657711
"example": true
658712
}
@@ -786,7 +840,7 @@
786840
}
787841
},
788842
"gameFeatureStatusUpdate": {
789-
"summary": "Triggered whenever game feature(ALLM) status changes for an HDMI Input",
843+
"summary": "Triggered whenever game feature status changes for an HDMI Input",
790844
"params": {
791845
"type": "object",
792846
"properties": {
@@ -799,7 +853,7 @@
799853
"example": "ALLM"
800854
},
801855
"mode": {
802-
"summary": "The current game feature status. Mode is required only for ALLM. Need to add support for future game features",
856+
"summary": "The current status of the game features like ALLM, VRR-HDMI, VRR-FREESYNC, VRR-FREESYNC-PREMIUM and VRR-FREESYNC-PREMIUM-PRO.",
803857
"type": "boolean",
804858
"example": true
805859
}

0 commit comments

Comments
 (0)