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

Add spatialScalability to VideoConfiguration #189

Merged
merged 4 commits into from
Apr 5, 2022
Merged
Changes from 2 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
11 changes: 11 additions & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ spec: secure-contexts; urlPrefix: https://www.w3.org/TR/secure-contexts/
ColorGamut colorGamut;
TransferFunction transferFunction;
DOMString scalabilityMode;
boolean spatialScalability;
};
</pre>

Expand Down Expand Up @@ -476,8 +477,18 @@ spec: secure-contexts; urlPrefix: https://www.w3.org/TR/secure-contexts/
<p>
If present, the <dfn for='VideoConfiguration' dict-member>scalabilityMode</dfn>
member represents the scalability mode as defined in [[webrtc-svc]].
Scalability mode is only applicable to the MediaEncodingType webrtc.
drkron marked this conversation as resolved.
Show resolved Hide resolved
drkron marked this conversation as resolved.
Show resolved Hide resolved
</p>

<p>
If present, the <dfn for='VideoConfiguration' dict-member>spatialScalability</dfn>
member represents the ability to do spatial prediction, that is,
using frames of a resolution different than the current resolution as
dependencies. This is closely coupled to {{scalabilityMode}} in the
drkron marked this conversation as resolved.
Show resolved Hide resolved
drkron marked this conversation as resolved.
Show resolved Hide resolved
sense that streams that are produced using certain scalability modes
can only be decoded if spatalScalability is supported. Spatial
scalability is only applicable to MediaDecodingConfiguration.
drkron marked this conversation as resolved.
Show resolved Hide resolved
</p>
</section>

<section>
Expand Down