From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- dom/media/nsIAudioDeviceInfo.idl | 54 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 dom/media/nsIAudioDeviceInfo.idl (limited to 'dom/media/nsIAudioDeviceInfo.idl') diff --git a/dom/media/nsIAudioDeviceInfo.idl b/dom/media/nsIAudioDeviceInfo.idl new file mode 100644 index 0000000000..f0a1853875 --- /dev/null +++ b/dom/media/nsIAudioDeviceInfo.idl @@ -0,0 +1,54 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsISupports.idl" + +[scriptable, uuid(feb979a8-f8cc-4522-9dff-6c055ca50762)] +interface nsIAudioDeviceInfo : nsISupports +{ + readonly attribute AString name; + + readonly attribute AString groupId; + + readonly attribute AString vendor; + + // type: Unknown/Input/Output + const unsigned short TYPE_UNKNOWN = 0; + const unsigned short TYPE_INPUT = 1; + const unsigned short TYPE_OUTPUT = 2; + readonly attribute unsigned short type; + + // state: Disabled/Unplugged/Enabled + const unsigned short STATE_DISABLED = 0; + const unsigned short STATE_UNPLUGGED = 1; + const unsigned short STATE_ENABLED = 2; + readonly attribute unsigned short state; + + // preferred: None/Multimedia/Voice/Notification/All + const unsigned short PREF_NONE = 0x00; + const unsigned short PREF_MULTIMEDIA = 0x01; + const unsigned short PREF_VOICE = 0x02; + const unsigned short PREF_NOTIFICATION = 0x04; + const unsigned short PREF_ALL = 0x0F; + readonly attribute unsigned short preferred; + + // supported format, default format: S16LE/S16BE/F32LE/F32BE + const unsigned short FMT_S16LE = 0x0010; + const unsigned short FMT_S16BE = 0x0020; + const unsigned short FMT_F32LE = 0x1000; + const unsigned short FMT_F32BE = 0x2000; + readonly attribute unsigned short supportedFormat; + readonly attribute unsigned short defaultFormat; + + // Max number of channels: [1, 255] + readonly attribute unsigned long maxChannels; + + readonly attribute unsigned long defaultRate; + readonly attribute unsigned long maxRate; + readonly attribute unsigned long minRate; + + readonly attribute unsigned long maxLatency; + readonly attribute unsigned long minLatency; +}; -- cgit v1.2.3