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

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

Snap for 9425524 from a0aa23f1 to udc-release

Change-Id: I48c82b8d3f0706592158cacdd897b2419ff14118
parents ed5adcdc a0aa23f1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -132,6 +132,7 @@ aidl_interface {
        "android.hardware.common-V2",
        "android.hardware.common.fmq-V1",
        "android.hardware.audio.common-V1",
        "android.hardware.audio.effect-V1",
        "android.media.audio.common.types-V2",
    ],
    backend: {
@@ -222,6 +223,8 @@ aidl_interface {
        "android.hardware.audio_defaults",
    ],
    srcs: [
        "android/hardware/audio/effect/AcousticEchoCanceler.aidl",
        "android/hardware/audio/effect/AutomaticGainControl.aidl",
        "android/hardware/audio/effect/BassBoost.aidl",
        "android/hardware/audio/effect/Capability.aidl",
        "android/hardware/audio/effect/CommandId.aidl",
@@ -235,6 +238,7 @@ aidl_interface {
        "android/hardware/audio/effect/IEffect.aidl",
        "android/hardware/audio/effect/IFactory.aidl",
        "android/hardware/audio/effect/LoudnessEnhancer.aidl",
        "android/hardware/audio/effect/NoiseSuppression.aidl",
        "android/hardware/audio/effect/Parameter.aidl",
        "android/hardware/audio/effect/PresetReverb.aidl",
        "android/hardware/audio/effect/Processing.aidl",
+15 −0
Original line number Diff line number Diff line
@@ -9,14 +9,29 @@
    {
      "name": "VtsHalAudioEffectTargetTest"
    },
    {
      "name": "VtsHalDownmixTargetTest"
    },
    {
      "name": "VtsHalEqualizerTargetTest"
    },
    {
      "name": "VtsHalHapticGeneratorTargetTest"
    },
    {
      "name": "VtsHalLoudnessEnhancerTargetTest"
    },
    {
      "name": "VtsHalVisualizerTargetTest"
    },
    {
      "name": "VtsHalAECTargetTest"
    },
    {
      "name": "VtsHalAGCTargetTest"
    },
    {
      "name": "VtsHalNSTargetTest"
    }
  ]
}
+2 −0
Original line number Diff line number Diff line
@@ -64,6 +64,8 @@ interface IModule {
  int generateHwAvSyncId();
  android.hardware.audio.core.VendorParameter[] getVendorParameters(in @utf8InCpp String[] ids);
  void setVendorParameters(in android.hardware.audio.core.VendorParameter[] parameters, boolean async);
  void addDeviceEffect(int portConfigId, in android.hardware.audio.effect.IEffect effect);
  void removeDeviceEffect(int portConfigId, in android.hardware.audio.effect.IEffect effect);
  @VintfStability
  parcelable OpenInputStreamArguments {
    int portConfigId;
+2 −0
Original line number Diff line number Diff line
@@ -38,4 +38,6 @@ interface IStreamCommon {
  void updateHwAvSyncId(int hwAvSyncId);
  android.hardware.audio.core.VendorParameter[] getVendorParameters(in @utf8InCpp String[] ids);
  void setVendorParameters(in android.hardware.audio.core.VendorParameter[] parameters, boolean async);
  void addEffect(in android.hardware.audio.effect.IEffect effect);
  void removeEffect(in android.hardware.audio.effect.IEffect effect);
}
+51 −0
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.effect;
@VintfStability
union AcousticEchoCanceler {
  android.hardware.audio.effect.VendorExtension vendor;
  int echoDelayUs;
  boolean mobileMode;
  @VintfStability
  union Id {
    int vendorExtensionTag;
    android.hardware.audio.effect.AcousticEchoCanceler.Tag commonTag;
  }
  @VintfStability
  parcelable Capability {
    ParcelableHolder extension;
    int maxEchoDelayUs;
    boolean supportMobileMode;
  }
}
Loading