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

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

Snap for 8023588 from fc6bf750 to tm-release

Change-Id: I4b165804d4ca171da71ef897a8088a6cb3f19721
parents b26bd776 fc6bf750
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
/*
 * Copyright 2021 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.bluetooth.audio;
@Backing(type="int") @VintfStability
enum BluetoothAudioStatus {
  UNKNOWN = 0,
  SUCCESS = 1,
  UNSUPPORTED_CODEC_CONFIGURATION = 2,
  FAILURE = 3,
}
+3 −3
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ package android.hardware.bluetooth.audio;
@VintfStability
interface IBluetoothAudioProvider {
  void endSession();
  android.hardware.common.fmq.MQDescriptor<int,android.hardware.common.fmq.UnsynchronizedWrite> startSession(in android.hardware.bluetooth.audio.IBluetoothAudioPort hostIf, in android.hardware.bluetooth.audio.AudioConfiguration audioConfig);
  void streamStarted(in boolean status);
  void streamSuspended(in boolean status);
  android.hardware.common.fmq.MQDescriptor<byte,android.hardware.common.fmq.SynchronizedReadWrite> startSession(in android.hardware.bluetooth.audio.IBluetoothAudioPort hostIf, in android.hardware.bluetooth.audio.AudioConfiguration audioConfig);
  void streamStarted(in android.hardware.bluetooth.audio.BluetoothAudioStatus status);
  void streamSuspended(in android.hardware.bluetooth.audio.BluetoothAudioStatus status);
}
+4 −4
Original line number Diff line number Diff line
@@ -34,8 +34,8 @@
package android.hardware.bluetooth.audio;
@Backing(type="byte") @VintfStability
enum LdacQualityIndex {
  QUALITY_HIGH = 1,
  QUALITY_MID = 2,
  QUALITY_LOW = 4,
  QUALITY_ABR = 8,
  HIGH = 1,
  MID = 2,
  LOW = 4,
  ABR = 8,
}
+2 −2
Original line number Diff line number Diff line
@@ -38,13 +38,13 @@ parcelable LeAudioCapabilities {
  android.hardware.bluetooth.audio.CodecType codecType;
  android.hardware.bluetooth.audio.AudioLocation supportedChannel;
  int supportedChannelCount;
  android.hardware.bluetooth.audio.LeAudioCapabilities.LeaudioCodecCapabilities leaudioCodecCapabilities;
  android.hardware.bluetooth.audio.LeAudioCapabilities.LeAudioCodecCapabilities leAudioCodecCapabilities;
  @VintfStability
  parcelable VendorCapabilities {
    ParcelableHolder extension;
  }
  @VintfStability
  union LeaudioCodecCapabilities {
  union LeAudioCodecCapabilities {
    android.hardware.bluetooth.audio.Lc3Capabilities lc3Capabilities;
    android.hardware.bluetooth.audio.LeAudioCapabilities.VendorCapabilities vendorCapabillities;
  }
+2 −2
Original line number Diff line number Diff line
@@ -35,10 +35,10 @@ package android.hardware.bluetooth.audio;
@VintfStability
parcelable LeAudioConfiguration {
  android.hardware.bluetooth.audio.LeAudioMode mode;
  android.hardware.bluetooth.audio.LeAudioConfiguration.LeAuioModeConfig modeConfig;
  android.hardware.bluetooth.audio.LeAudioConfiguration.LeAudioModeConfig modeConfig;
  android.hardware.bluetooth.audio.CodecType codecType;
  @VintfStability
  union LeAuioModeConfig {
  union LeAudioModeConfig {
    android.hardware.bluetooth.audio.UnicastConfiguration unicastConfig;
    android.hardware.bluetooth.audio.BroadcastConfiguration broadcastConfig;
  }
Loading