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

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

Snap for 9617930 from e3ef37d6 to udc-release

Change-Id: I27fcfba8f39af102054e3833a52b6e022657a910
parents 05fcfa3e e3ef37d6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -223,11 +223,12 @@ aidl_interface {
    ],
    srcs: [
        "android/hardware/audio/effect/AcousticEchoCanceler.aidl",
        "android/hardware/audio/effect/AutomaticGainControl.aidl",
        "android/hardware/audio/effect/AutomaticGainControlV1.aidl",
        "android/hardware/audio/effect/AutomaticGainControlV2.aidl",
        "android/hardware/audio/effect/BassBoost.aidl",
        "android/hardware/audio/effect/Capability.aidl",
        "android/hardware/audio/effect/CommandId.aidl",
        "android/hardware/audio/effect/DefaultExtension.aidl",
        "android/hardware/audio/effect/Descriptor.aidl",
        "android/hardware/audio/effect/Downmix.aidl",
        "android/hardware/audio/effect/DynamicsProcessing.aidl",
+4 −1
Original line number Diff line number Diff line
@@ -40,7 +40,10 @@
      "name": "VtsHalAECTargetTest"
    },
    {
      "name": "VtsHalAGCTargetTest"
      "name": "VtsHalAGC1TargetTest"
    },
    {
      "name": "VtsHalAGC2TargetTest"
    },
    {
      "name": "VtsHalNSTargetTest"
+3 −3
Original line number Diff line number Diff line
@@ -33,15 +33,15 @@

package android.hardware.audio.effect;
@VintfStability
union AutomaticGainControl {
union AutomaticGainControlV2 {
  android.hardware.audio.effect.VendorExtension vendor;
  int fixedDigitalGainMb;
  android.hardware.audio.effect.AutomaticGainControl.LevelEstimator levelEstimator;
  android.hardware.audio.effect.AutomaticGainControlV2.LevelEstimator levelEstimator;
  int saturationMarginMb;
  @VintfStability
  union Id {
    int vendorExtensionTag;
    android.hardware.audio.effect.AutomaticGainControl.Tag commonTag;
    android.hardware.audio.effect.AutomaticGainControlV2.Tag commonTag;
  }
  @Backing(type="int") @VintfStability
  enum LevelEstimator {
+4 −4
Original line number Diff line number Diff line
/*
 * Copyright (C) 2022 The Android Open Source Project
 * Copyright (C) 2023 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.
@@ -31,8 +31,8 @@
// 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.media.c2;
package android.hardware.audio.effect;
@VintfStability
parcelable Params {
  byte[] params;
parcelable DefaultExtension {
  byte[] bytes;
}
+2 −1
Original line number Diff line number Diff line
@@ -41,7 +41,8 @@ parcelable Descriptor {
  const String EFFECT_TYPE_UUID_EQUALIZER = "0bed4300-ddd6-11db-8f34-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_BASS_BOOST = "0634f220-ddd4-11db-a0fc-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_VIRTUALIZER = "37cc2c00-dddd-11db-8577-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_AGC = "0a8abfe0-654c-11e0-ba26-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_AGC1 = "0a8abfe0-654c-11e0-ba26-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_AGC2 = "ae3c653b-be18-4ab8-8938-418f0a7f06ac";
  const String EFFECT_TYPE_UUID_AEC = "7b491460-8d4d-11e0-bd61-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_NS = "58b4b260-8e06-11e0-aa8e-0002a5d5c51b";
  const String EFFECT_TYPE_UUID_LOUDNESS_ENHANCER = "fe3199be-aed0-413f-87bb-11260eb63cf1";
Loading