Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to support the new substreams construct for MUX flows #61

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions capabilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,19 @@ It MAY be used in place of the file with the same name in the AMWA BCP-004-01 sp
- **Target:** (a) Sender `st2110_21_sender_type` (defined in the [Sender Attributes](../sender-attributes/#st-2110-21-sender-type) register), (b) SDP attribute `a=fmtp:` format-specific parameter `TP`
- **Applicability:** AMWA IS-04

## Substream Constraints

Mux Senders create IS-04 Flow objects for each subflow included in the mux Flow.
The mux Flow links to each subflow object using the IS-04 [`parents`](https://specs.amwa.tv/is-04/latest/docs/Data_Model_-_Identifier_Mapping.html#source-and-flow-representation) attribute.
Comment on lines +256 to +257
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Mux Senders create IS-04 Flow objects for each subflow included in the mux Flow.
The mux Flow links to each subflow object using the IS-04 [`parents`](https://specs.amwa.tv/is-04/latest/docs/Data_Model_-_Identifier_Mapping.html#source-and-flow-representation) attribute.
Mux Senders create IS-04 Flow resources for each subflow included in the mux Flow.
The mux Flow links to each subflow resource using the IS-04 [`parents`](https://specs.amwa.tv/is-04/latest/docs/Data_Model_-_Identifier_Mapping.html#source-and-flow-representation) attribute.

(Generally we haven't used latest URL but linked to a particular spec version.)


### Substreams
- **Name:** `urn:x-nmos:substreams`
- **Description:** Identifies any per substream constraints.
- **Specification:** per AMWA BCP-004-01
- **Type:** array of objects (as per [AMWA BCP-004-01](https://specs.amwa.tv/bcp-004-01/))
- **Target:** mux Sender subflows and their associated attributes targeted by individual Substream Parameter Constraints
- **Applicability:** AMWA IS-04

[RFC-4566]: https://tools.ietf.org/html/rfc4566 "SDP: Session Description Protocol"
[RFC-9134]: https://tools.ietf.org/html/rfc9134 "RTP Payload Format for ISO/IEC 21122 (JPEG XS)"
[color-sampling]: https://www.iana.org/assignments/media-type-sub-parameters/media-type-sub-parameters.xhtml#media-type-sub-parameters-15 "Media Type Sub-Parameter Registry for video/raw: Color (sub-)sampling"
7 changes: 7 additions & 0 deletions capabilities/constraint_set.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
"type": "boolean",
"default": true
},
"urn:x-nmos:substreams": {
"description": "This exposes any substream constraints.",
"type": "array",
"items": {
"$ref": "substream_constraints.json"
}
},
"urn:x-nmos:cap:format:media_type": {
"$ref": "param_constraint_string.json"
},
Expand Down