blob: f0121fa90c9a0991ff9eadd30e7171907aae5137 [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-mediatracksettings
dictionary MediaTrackSettings {
long width;
long height;
double aspectRatio;
double frameRate;
DOMString facingMode;
double volume;
long sampleRate;
long sampleSize;
boolean echoCancellation;
double latency;
long channelCount;
DOMString deviceId;
DOMString groupId;
// Media Capture Depth Stream Extensions
// https://w3c.github.io/mediacapture-depth/#mediatracksettings-dictionary
// 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] DOMString videoKind;
[RuntimeEnabled=MediaCaptureDepth] double depthNear;
[RuntimeEnabled=MediaCaptureDepth] double depthFar;
[RuntimeEnabled=MediaCaptureDepth] double focalLengthX;
[RuntimeEnabled=MediaCaptureDepth] double focalLengthY;
};