-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Rename AVSystem to Media Capabilities; add new Audio and Video …
…output modules
- Loading branch information
1 parent
fc3530c
commit 65f0e0b
Showing
11 changed files
with
1,627 additions
and
2,024 deletions.
There are no files selected for viewing
698 changes: 698 additions & 0 deletions
698
requirements/specifications/media/media-capabilities.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"openrpc": "1.2.4", | ||
"info": { | ||
"title": "AudioOutput", | ||
"description": "A module for the device's audio output system, including its output capabilities and configuration.", | ||
"version": "0.0.0" | ||
}, | ||
"methods": [ | ||
{ | ||
"name": "mode", | ||
"summary": "The current audio output mode of the device.", | ||
"tags": [ | ||
{ | ||
"name": "capabilities", | ||
"x-uses": [ | ||
"xrn:firebolt:capability:audio-output:config" | ||
] | ||
} | ||
], | ||
"params": [], | ||
"result": { | ||
"name": "mode", | ||
"summary": "The audio output mode.", | ||
"schema": { | ||
"$ref": "https://meta.comcast.com/firebolt/schemas/media#/definitions/AudioMode" | ||
} | ||
}, | ||
"examples": [ | ||
{ | ||
"name": "Default Example", | ||
"params": [], | ||
"result": { | ||
"name": "Default Result", | ||
"value": "stereo" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.