Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 667738e3 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 9595907 from 9c0b1937 to udc-release

Change-Id: I8825f82549e617a59846470f1f2054dfbf8edccd
parents eb548149 9c0b1937
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -120,8 +120,6 @@ aidl_interface {
        "android/hardware/audio/core/IStreamOut.aidl",
        "android/hardware/audio/core/IStreamOutEventCallback.aidl",
        "android/hardware/audio/core/ITelephony.aidl",
        "android/hardware/audio/core/MicrophoneDynamicInfo.aidl",
        "android/hardware/audio/core/MicrophoneInfo.aidl",
        "android/hardware/audio/core/MmapBufferDescriptor.aidl",
        "android/hardware/audio/core/ModuleDebug.aidl",
        "android/hardware/audio/core/StreamDescriptor.aidl",
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ interface IModule {
  void setMasterVolume(float volume);
  boolean getMicMute();
  void setMicMute(boolean mute);
  android.hardware.audio.core.MicrophoneInfo[] getMicrophones();
  android.media.audio.common.MicrophoneInfo[] getMicrophones();
  void updateAudioMode(android.media.audio.common.AudioMode mode);
  void updateScreenRotation(android.hardware.audio.core.IModule.ScreenRotation rotation);
  void updateScreenState(boolean isTurnedOn);
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ package android.hardware.audio.core;
@VintfStability
interface IStreamIn {
  android.hardware.audio.core.IStreamCommon getStreamCommon();
  android.hardware.audio.core.MicrophoneDynamicInfo[] getActiveMicrophones();
  android.media.audio.common.MicrophoneDynamicInfo[] getActiveMicrophones();
  android.hardware.audio.core.IStreamIn.MicrophoneDirection getMicrophoneDirection();
  void setMicrophoneDirection(android.hardware.audio.core.IStreamIn.MicrophoneDirection direction);
  float getMicrophoneFieldDimension();
@@ -43,7 +43,7 @@ interface IStreamIn {
  void updateMetadata(in android.hardware.audio.common.SinkMetadata sinkMetadata);
  float[] getHwGain();
  void setHwGain(in float[] channelGains);
  const int MIC_FIELD_DIMENSION_WIDE_ANGLE = (-1);
  const int MIC_FIELD_DIMENSION_WIDE_ANGLE = (-1) /* -1 */;
  const int MIC_FIELD_DIMENSION_NO_ZOOM = 0;
  const int MIC_FIELD_DIMENSION_MAX_ZOOM = 1;
  const int HW_GAIN_MIN = 0;
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ interface ITelephony {
    const int VOICE_VOLUME_MAX = 1;
    @Backing(type="int") @VintfStability
    enum TtyMode {
      UNSPECIFIED = (-1),
      UNSPECIFIED = (-1) /* -1 */,
      OFF = 0,
      FULL = 1,
      HCO = 2,
+0 −82
Original line number Diff line number Diff line
/*
 * Copyright (C) 2022 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
///////////////////////////////////////////////////////////////////////////////
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE.                          //
///////////////////////////////////////////////////////////////////////////////

// This file is a snapshot of an AIDL file. Do not edit it manually. There are
// two cases:
// 1). this is a frozen version file - do not edit this in any case.
// 2). this is a 'current' file. If you make a backwards compatible change to
//     the interface (from the latest frozen version), the build system will
//     prompt you to update this file with `m <name>-update-api`.
//
// You must not make a backward incompatible change to any AIDL file built
// with the aidl_interface module type with versions property set. The module
// type is used to build AIDL files in a way that they can be used across
// independently updatable components of the system. If a device is shipped
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.audio.core;
@JavaDerive(equals=true, toString=true) @VintfStability
parcelable MicrophoneInfo {
  @utf8InCpp String id;
  android.media.audio.common.AudioDevice device;
  android.hardware.audio.core.MicrophoneInfo.Location location = android.hardware.audio.core.MicrophoneInfo.Location.UNKNOWN;
  int group = GROUP_UNKNOWN;
  int indexInTheGroup = INDEX_IN_THE_GROUP_UNKNOWN;
  @nullable android.hardware.audio.core.MicrophoneInfo.Sensitivity sensitivity;
  android.hardware.audio.core.MicrophoneInfo.Directionality directionality = android.hardware.audio.core.MicrophoneInfo.Directionality.UNKNOWN;
  android.hardware.audio.core.MicrophoneInfo.FrequencyResponsePoint[] frequencyResponse;
  @nullable android.hardware.audio.core.MicrophoneInfo.Coordinate position;
  @nullable android.hardware.audio.core.MicrophoneInfo.Coordinate orientation;
  const int GROUP_UNKNOWN = (-1);
  const int INDEX_IN_THE_GROUP_UNKNOWN = (-1);
  @Backing(type="int") @VintfStability
  enum Location {
    UNKNOWN = 0,
    MAINBODY = 1,
    MAINBODY_MOVABLE = 2,
    PERIPHERAL = 3,
  }
  @VintfStability
  parcelable Sensitivity {
    float leveldBFS;
    float maxSpldB;
    float minSpldB;
  }
  @Backing(type="int") @VintfStability
  enum Directionality {
    UNKNOWN = 0,
    OMNI = 1,
    BI_DIRECTIONAL = 2,
    CARDIOID = 3,
    HYPER_CARDIOID = 4,
    SUPER_CARDIOID = 5,
  }
  @VintfStability
  parcelable FrequencyResponsePoint {
    float frequencyHz;
    float leveldB;
  }
  @VintfStability
  parcelable Coordinate {
    float x;
    float y;
    float z;
  }
}
Loading