From dd09c61b4b7cb13d71243dcc85d4fc06c8e0703f Mon Sep 17 00:00:00 2001 From: Dominique Hazael-Massieux Date: Thu, 13 Jun 2024 10:55:17 +0200 Subject: [PATCH] Move backgroundBlur to main spec see https://github.com/w3c/mediacapture-main/pull/1006 --- index.html | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/index.html b/index.html index c14d570..53db96f 100644 --- a/index.html +++ b/index.html @@ -1033,35 +1033,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