diff --git a/index.html b/index.html index 10f1e2a..e9f1fd8 100644 --- a/index.html +++ b/index.html @@ -1031,35 +1031,6 @@

Constrainable Properties

-
-

Exposing MediaStreamTrack source background blur support

-
-

Some platforms or User Agents may provide built-in support for background blurring of video frames, in particular for camera video streams. - Web applications may either want to control or at least be aware that background blur is applied at the source level. - This may for instance allow the web application to update its UI or to not apply background blur on its own. - For that reason, we extend {{MediaStreamTrack}} with the following properties. -

-
-
-

The WebIDL changes are the following: -

-partial dictionary MediaTrackSupportedConstraints {
-  boolean backgroundBlur = true;
-};
-
-partial dictionary MediaTrackConstraintSet {
-  ConstrainBoolean backgroundBlur;
-};
-
-partial dictionary MediaTrackSettings {
-  boolean backgroundBlur;
-};
-
-partial dictionary MediaTrackCapabilities {
-  sequence<boolean> backgroundBlur;
-};
-
-

Exposing MediaStreamTrack source heuristic reactions support