blob: 747bfa58100549e616d0661599101d787751683b [file] [log] [blame]
Ytai Ben-Tsvi71109da2020-11-03 15:11:13 -08001/*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.media;
18
19/**
20 * {@hide}
21 */
22parcelable MicrophoneInfoData {
23 @utf8InCpp String deviceId;
24 int portId;
25 int type;
26 @utf8InCpp String address;
27 int deviceLocation;
28 int deviceGroup;
29 int indexInTheGroup;
30 float[] geometricLocation;
31 float[] orientation;
32 float[] frequencies;
33 float[] frequencyResponses;
34 int[] channelMapping;
35 float sensitivity;
36 float maxSpl;
37 float minSpl;
38 int directionality;
39}