BluetoothLeAudioCodecConfig

public final class BluetoothLeAudioCodecConfig
extends Object implements Parcelable

java.lang.Object
   ↳ android.bluetooth.BluetoothLeAudioCodecConfig


Represents the codec configuration for a Bluetooth LE Audio source device.

Contains the source codec type.

The source codec type values are the same as those supported by the device hardware.

Summary

Nested classes

class BluetoothLeAudioCodecConfig.Builder

Builder for BluetoothLeAudioCodecConfig

Constants

int BITS_PER_SAMPLE_16

Codec bits per sample 16.

int BITS_PER_SAMPLE_24

Codec bits per sample 24.

int BITS_PER_SAMPLE_32

Codec bits per sample 32.

int BITS_PER_SAMPLE_NONE

Codec bits per sample 0.

int CHANNEL_COUNT_1

Codec channel mode MONO.

int CHANNEL_COUNT_2

Codec channel mode STEREO.

int CHANNEL_COUNT_NONE

Codec channel mode NONE.

int CODEC_PRIORITY_DEFAULT

Codec priority default.

int CODEC_PRIORITY_DISABLED

Codec priority disabled.

int CODEC_PRIORITY_HIGHEST

Codec priority highest.

int FRAME_DURATION_10000

Frame duration 10000 us.

int FRAME_DURATION_7500

Frame duration 7500 us.

int FRAME_DURATION_NONE

Frame duration 0.

int SAMPLE_RATE_16000

Codec sample rate 16000 Hz.

int SAMPLE_RATE_24000

Codec sample rate 24000 Hz.

int SAMPLE_RATE_32000

Codec sample rate 32000 Hz.

int SAMPLE_RATE_44100

Codec sample rate 44100 Hz.

int SAMPLE_RATE_48000

Codec sample rate 48000 Hz.

int SAMPLE_RATE_8000

Codec sample rate 8000 Hz.

int SAMPLE_RATE_NONE

Codec sample rate 0 Hz.

int SOURCE_CODEC_TYPE_INVALID

int SOURCE_CODEC_TYPE_LC3

Inherited constants

Fields

public static final Creator<BluetoothLeAudioCodecConfig> CREATOR

Parcelable.Creator interface implementation.

Public methods

int describeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

boolean equals(Object o)

Indicates whether some other object is "equal to" this one.

int getBitsPerSample()

Returns the codec bits per sample.

int getChannelCount()

Returns the codec channel mode.

String getCodecName()

Gets the codec name.

int getCodecPriority()

Returns the codec selection priority.

int getCodecType()

Gets the codec type.

int getFrameDuration()

Returns the frame duration.

int getMaxOctetsPerFrame()

Returns the maximum octets per frame

int getMinOctetsPerFrame()

Returns the minimum octets per frame

int getOctetsPerFrame()

Returns the octets per frame

int getSampleRate()

Returns the codec sample rate.

int hashCode()

Returns a hash representation of this BluetoothLeAudioCodecConfig based on all the config values.

String toString()

Returns a string representation of the object.

void writeToParcel(Parcel out, int flags)

Flatten this object in to a Parcel.

Inherited methods

Constants

BITS_PER_SAMPLE_16

Added in API level 33
public static final int BITS_PER_SAMPLE_16

Codec bits per sample 16.

Constant Value: 1 (0x00000001)

BITS_PER_SAMPLE_24

Added in API level 33
public static final int BITS_PER_SAMPLE_24

Codec bits per sample 24.

Constant Value: 2 (0x00000002)

BITS_PER_SAMPLE_32

Added in API level 33
public static final int BITS_PER_SAMPLE_32

Codec bits per sample 32.

Constant Value: 8 (0x00000008)

BITS_PER_SAMPLE_NONE

Added in API level 33
public static final int BITS_PER_SAMPLE_NONE

Codec bits per sample 0. Default value of the codec bits per sample.

Constant Value: 0 (0x00000000)

CHANNEL_COUNT_1

Added in API level 33
public static final int CHANNEL_COUNT_1

Codec channel mode MONO.

Constant Value: 1 (0x00000001)

CHANNEL_COUNT_2

Added in API level 33
public static final int CHANNEL_COUNT_2

Codec channel mode STEREO.

Constant Value: 2 (0x00000002)

CHANNEL_COUNT_NONE

Added in API level 33
public static final int CHANNEL_COUNT_NONE

Codec channel mode NONE. Default value of the codec channel mode.

Constant Value: 0 (0x00000000)

CODEC_PRIORITY_DEFAULT

Added in API level 33
public static final int CODEC_PRIORITY_DEFAULT

Codec priority default. Default value used for codec priority.

Constant Value: 0 (0x00000000)

CODEC_PRIORITY_DISABLED

Added in API level 33
public static final int CODEC_PRIORITY_DISABLED

Codec priority disabled. Used to indicate that this codec is disabled and should not be used.

Constant Value: -1 (0xffffffff)

CODEC_PRIORITY_HIGHEST

Added in API level 33
public static final int CODEC_PRIORITY_HIGHEST

Codec priority highest. Used to indicate the highest priority a codec can have.

Constant Value: 1000000 (0x000f4240)

FRAME_DURATION_10000

Added in API level 33
public static final int FRAME_DURATION_10000

Frame duration 10000 us.

Constant Value: 2 (0x00000002)

FRAME_DURATION_7500

Added in API level 33
public static final int FRAME_DURATION_7500

Frame duration 7500 us.

Constant Value: 1 (0x00000001)

FRAME_DURATION_NONE

Added in API level 33
public static final int FRAME_DURATION_NONE

Frame duration 0. Default value of the frame duration.

Constant Value: 0 (0x00000000)

SAMPLE_RATE_16000

Added in API level 33
public static final int SAMPLE_RATE_16000

Codec sample rate 16000 Hz.

Constant Value: 4 (0x00000004)

SAMPLE_RATE_24000

Added in API level 33
public static final int SAMPLE_RATE_24000

Codec sample rate 24000 Hz.

Constant Value: 16 (0x00000010)

SAMPLE_RATE_32000

Added in API level 33
public static final int SAMPLE_RATE_32000

Codec sample rate 32000 Hz.

Constant Value: 32 (0x00000020)

SAMPLE_RATE_44100

Added in API level 33
public static final int SAMPLE_RATE_44100

Codec sample rate 44100 Hz.

Constant Value: 64 (0x00000040)

SAMPLE_RATE_48000

Added in API level 33
public static final int SAMPLE_RATE_48000

Codec sample rate 48000 Hz.

Constant Value: 128 (0x00000080)

SAMPLE_RATE_8000

Added in API level 33
public static final int SAMPLE_RATE_8000

Codec sample rate 8000 Hz.

Constant Value: 1 (0x00000001)

SAMPLE_RATE_NONE

Added in API level 33
public static final int SAMPLE_RATE_NONE

Codec sample rate 0 Hz. Default value used for codec sample rate. Values are the bit mask as defined in the Bluetooth Assigned Numbers, Generic Audio, Supported_Sampling_Frequencies table Note: We use only part of it.

Constant Value: 0 (0x00000000)

SOURCE_CODEC_TYPE_INVALID

Added in API level 33
public static final int SOURCE_CODEC_TYPE_INVALID

Constant Value: 1000000 (0x000f4240)

SOURCE_CODEC_TYPE_LC3

Added in API level 33
public static final int SOURCE_CODEC_TYPE_LC3

Constant Value: 0 (0x00000000)

Fields

CREATOR

Added in API level 33
public static final Creator<BluetoothLeAudioCodecConfig> CREATOR

Parcelable.Creator interface implementation.

Public methods

describeContents

Added in API level 33
public int describeContents ()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel, int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or CONTENTS_FILE_DESCRIPTOR

equals

Added in API level 33
public boolean equals (Object o)

Indicates whether some other object is "equal to" this one.

The equals method implements an equivalence relation on non-null object references:

  • It is reflexive: for any non-null reference value x, x.equals(x) should return true.
  • It is symmetric: for any non-null reference values x and y, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any non-null reference values x, y, and z, if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.
  • It is consistent: for any non-null reference values x and y, multiple invocations of x.equals(y) consistently return true or consistently return false, provided no information used in equals comparisons on the objects is modified.
  • For any non-null reference value x, x.equals(null) should return false.

An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.

Parameters
o Object: This value may be null.

Returns
boolean true if this object is the same as the obj argument; false otherwise.

getBitsPerSample

Added in API level 33
public int getBitsPerSample ()

Returns the codec bits per sample.

Returns
int Value is either 0 or a combination of BITS_PER_SAMPLE_NONE, BITS_PER_SAMPLE_16, BITS_PER_SAMPLE_24, and BITS_PER_SAMPLE_32

getChannelCount

Added in API level 33
public int getChannelCount ()

Returns the codec channel mode.

Returns
int Value is either 0 or a combination of CHANNEL_COUNT_NONE, CHANNEL_COUNT_1, and CHANNEL_COUNT_2

getCodecName

Added in API level 33
public String getCodecName ()

Gets the codec name.

Returns
String the codec name This value cannot be null.

getCodecPriority

Added in API level 33
public int getCodecPriority ()

Returns the codec selection priority.

The codec selection priority is relative to other codecs: larger value means higher priority.

Returns
int Value is CODEC_PRIORITY_DISABLED, CODEC_PRIORITY_DEFAULT, or CODEC_PRIORITY_HIGHEST

getCodecType

Added in API level 33
public int getCodecType ()

Gets the codec type.

Returns
int the codec type Value is SOURCE_CODEC_TYPE_LC3, or SOURCE_CODEC_TYPE_INVALID

getFrameDuration

Added in API level 33
public int getFrameDuration ()

Returns the frame duration.

Returns
int Value is either 0 or a combination of FRAME_DURATION_NONE, FRAME_DURATION_7500, and FRAME_DURATION_10000

getMaxOctetsPerFrame

Added in API level 33
public int getMaxOctetsPerFrame ()

Returns the maximum octets per frame

Returns
int

getMinOctetsPerFrame

Added in API level 33
public int getMinOctetsPerFrame ()

Returns the minimum octets per frame

Returns
int

getOctetsPerFrame

Added in API level 33
public int getOctetsPerFrame ()

Returns the octets per frame

Returns
int

getSampleRate

Added in API level 33
public int getSampleRate ()

Returns the codec sample rate.

Returns
int Value is either 0 or a combination of SAMPLE_RATE_NONE, SAMPLE_RATE_8000, SAMPLE_RATE_16000, SAMPLE_RATE_24000, SAMPLE_RATE_32000, SAMPLE_RATE_44100, and SAMPLE_RATE_48000

hashCode

Added in API level 33
public int hashCode ()

Returns a hash representation of this BluetoothLeAudioCodecConfig based on all the config values.

Returns
int a hash code value for this object.

toString

Added in API level 33
public String toString ()

Returns a string representation of the object.

Returns
String a string representation of the object.

writeToParcel

Added in API level 33
public void writeToParcel (Parcel out, 
                int flags)

Flatten this object in to a Parcel.

Parameters
out Parcel: This value cannot be null.

flags int: Additional flags about how the object should be written. May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of Parcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES