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

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

Snap for 9440496 from 281c0235 to udc-release

Change-Id: If1f5f3f77faca5c2f31aa03ecd14acd17a0cc782
parents e0561c59 281c0235
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -119,6 +119,7 @@ aidl_interface {
        "android/hardware/audio/core/IStreamCommon.aidl",
        "android/hardware/audio/core/IStreamIn.aidl",
        "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",
+3 −0
Original line number Diff line number Diff line
@@ -21,6 +21,9 @@
    {
      "name": "VtsHalLoudnessEnhancerTargetTest"
    },
    {
      "name": "VtsHalPresetReverbTargetTest"
    },
    {
      "name": "VtsHalVirtualizerTargetTest"
    },
+9 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ interface IModule {
  android.hardware.audio.core.AudioRoute[] getAudioRoutesForAudioPort(int portId);
  android.hardware.audio.core.IModule.OpenInputStreamReturn openInputStream(in android.hardware.audio.core.IModule.OpenInputStreamArguments args);
  android.hardware.audio.core.IModule.OpenOutputStreamReturn openOutputStream(in android.hardware.audio.core.IModule.OpenOutputStreamArguments args);
  android.hardware.audio.core.IModule.SupportedPlaybackRateFactors getSupportedPlaybackRateFactors();
  android.hardware.audio.core.AudioPatch setAudioPatch(in android.hardware.audio.core.AudioPatch requested);
  boolean setAudioPortConfig(in android.media.audio.common.AudioPortConfig requested, out android.media.audio.common.AudioPortConfig suggested);
  void resetAudioPatch(int patchId);
@@ -84,12 +85,20 @@ interface IModule {
    @nullable android.media.audio.common.AudioOffloadInfo offloadInfo;
    long bufferSizeFrames;
    @nullable android.hardware.audio.core.IStreamCallback callback;
    @nullable android.hardware.audio.core.IStreamOutEventCallback eventCallback;
  }
  @VintfStability
  parcelable OpenOutputStreamReturn {
    android.hardware.audio.core.IStreamOut stream;
    android.hardware.audio.core.StreamDescriptor desc;
  }
  @VintfStability
  parcelable SupportedPlaybackRateFactors {
    float minSpeed;
    float maxSpeed;
    float minPitch;
    float maxPitch;
  }
  @Backing(type="int") @VintfStability
  enum ScreenRotation {
    DEG_0 = 0,
+10 −0
Original line number Diff line number Diff line
@@ -38,6 +38,16 @@ interface IStreamOut {
  void updateMetadata(in android.hardware.audio.common.SourceMetadata sourceMetadata);
  float[] getHwVolume();
  void setHwVolume(in float[] channelVolumes);
  float getAudioDescriptionMixLevel();
  void setAudioDescriptionMixLevel(float leveldB);
  android.media.audio.common.AudioDualMonoMode getDualMonoMode();
  void setDualMonoMode(android.media.audio.common.AudioDualMonoMode mode);
  android.media.audio.common.AudioLatencyMode[] getRecommendedLatencyModes();
  void setLatencyMode(android.media.audio.common.AudioLatencyMode mode);
  android.media.audio.common.AudioPlaybackRate getPlaybackRateParameters();
  void setPlaybackRateParameters(in android.media.audio.common.AudioPlaybackRate playbackRate);
  void selectPresentation(int presentationId, int programId);
  const int HW_VOLUME_MIN = 0;
  const int HW_VOLUME_MAX = 1;
  const int AUDIO_DESCRIPTION_MIX_LEVEL_MAX = 48;
}
+39 −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.core;
@VintfStability
interface IStreamOutEventCallback {
  oneway void onCodecFormatChanged(in byte[] audioMetadata);
  oneway void onRecommendedLatencyModeChanged(in android.media.audio.common.AudioLatencyMode[] modes);
}
Loading