blob: b2e8cdcdbc74054dc82c976f65f451ca6624a9d6 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/mediacapture-main/#idl-def-mediatracksupportedconstraints
// NOTE: The names of this dictionary MUST be kept aligned with those in
// MediaTrackConstraintSet.idl.
dictionary MediaTrackSupportedConstraints {
boolean width = true;
boolean height = true;
boolean aspectRatio = true;
boolean frameRate = true;
boolean facingMode = true;
boolean volume = true;
boolean sampleRate = true;
boolean sampleSize = true;
boolean echoCancellation = true;
boolean latency = true;
boolean channelCount = true;
boolean deviceId = true;
boolean groupId = true;
// Media Capture Depth Stream Extensions
// https://w3c.github.io/mediacapture-depth
// TODO(aleksandar.stojiljkovic): videoKind, depthNear, depthFar,
// focalLengthX and focalLengthY attributes should be declared as partial
// dictionary but IDL parser can't support it yet. http://crbug.com/579896.
[RuntimeEnabled=MediaCaptureDepth] boolean videoKind = true;
[RuntimeEnabled=MediaCaptureDepth] boolean depthNear = true;
[RuntimeEnabled=MediaCaptureDepth] boolean depthFar = true;
[RuntimeEnabled=MediaCaptureDepth] boolean focalLengthX = true;
[RuntimeEnabled=MediaCaptureDepth] boolean focalLengthY = true;
// W3C Image Capture API
// https://w3c.github.io/mediacapture-image/#mediatracksupportedconstraints-section
// TODO(mcasas) move out when partial dictionaries are supported
// http://crbug.com/579896.
[OriginTrialEnabled=ImageCapture] boolean whiteBalanceMode = true;
[OriginTrialEnabled=ImageCapture] boolean exposureMode = true;
[OriginTrialEnabled=ImageCapture] boolean focusMode = true;
[OriginTrialEnabled=ImageCapture] boolean pointsOfInterest = true;
[OriginTrialEnabled=ImageCapture] boolean exposureCompensation = true;
[OriginTrialEnabled=ImageCapture] boolean colorTemperature = true;
[OriginTrialEnabled=ImageCapture] boolean iso = true;
[OriginTrialEnabled=ImageCapture] boolean brightness = true;
[OriginTrialEnabled=ImageCapture] boolean contrast = true;
[OriginTrialEnabled=ImageCapture] boolean saturation = true;
[OriginTrialEnabled=ImageCapture] boolean sharpness = true;
[OriginTrialEnabled=ImageCapture] boolean zoom = true;
[OriginTrialEnabled=ImageCapture] boolean torch = true;
};