public
final
class
BluetoothLeAudioCodecConfig
extends Object
implements
Parcelable
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.
classBluetoothLeAudioCodecConfig.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 | ||||
|---|---|---|---|---|
|
From interface
|
Fields | |
|---|---|
public
static
final
Creator<BluetoothLeAudioCodecConfig> |
CREATOR
|
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 | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||
|
From interface
| |||||||||||||||||||||||
public static final int BITS_PER_SAMPLE_16
Codec bits per sample 16.
Constant Value: 1 (0x00000001)
public static final int BITS_PER_SAMPLE_24
Codec bits per sample 24.
Constant Value: 2 (0x00000002)
public static final int BITS_PER_SAMPLE_32
Codec bits per sample 32.
Constant Value: 8 (0x00000008)
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)
public static final int CHANNEL_COUNT_1
Codec channel mode MONO.
Constant Value: 1 (0x00000001)
public static final int CHANNEL_COUNT_2
Codec channel mode STEREO.
Constant Value: 2 (0x00000002)
public static final int CHANNEL_COUNT_NONE
Codec channel mode NONE. Default value of the codec channel mode.
Constant Value: 0 (0x00000000)
public static final int CODEC_PRIORITY_DEFAULT
Codec priority default. Default value used for codec priority.
Constant Value: 0 (0x00000000)
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)
public static final int CODEC_PRIORITY_HIGHEST
Codec priority highest. Used to indicate the highest priority a codec can have.
Constant Value: 1000000 (0x000f4240)
public static final int FRAME_DURATION_10000
Frame duration 10000 us.
Constant Value: 2 (0x00000002)
public static final int FRAME_DURATION_7500
Frame duration 7500 us.
Constant Value: 1 (0x00000001)
public static final int FRAME_DURATION_NONE
Frame duration 0. Default value of the frame duration.
Constant Value: 0 (0x00000000)
public static final int SAMPLE_RATE_16000
Codec sample rate 16000 Hz.
Constant Value: 4 (0x00000004)
public static final int SAMPLE_RATE_24000
Codec sample rate 24000 Hz.
Constant Value: 16 (0x00000010)
public static final int SAMPLE_RATE_32000
Codec sample rate 32000 Hz.
Constant Value: 32 (0x00000020)
public static final int SAMPLE_RATE_44100
Codec sample rate 44100 Hz.
Constant Value: 64 (0x00000040)
public static final int SAMPLE_RATE_48000
Codec sample rate 48000 Hz.
Constant Value: 128 (0x00000080)
public static final int SAMPLE_RATE_8000
Codec sample rate 8000 Hz.
Constant Value: 1 (0x00000001)
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)
public static final int SOURCE_CODEC_TYPE_INVALID
Constant Value: 1000000 (0x000f4240)
public static final int SOURCE_CODEC_TYPE_LC3
Constant Value: 0 (0x00000000)
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 |
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:
x, x.equals(x) should return
true.
x and y, x.equals(y)
should return true if and only if
y.equals(x) returns true.
x, y, and z, if
x.equals(y) returns true and
y.equals(z) returns true, then
x.equals(z) should return true.
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.
x,
x.equals(null) should return false.
The equals method for class Object implements
the most discriminating possible equivalence relation on objects;
that is, for any non-null reference values x and
y, this method returns true if and only
if x and y refer to the same object
(x == y has the value true).
Note that it is generally necessary to override the hashCode
method whenever this method is overridden, so as to maintain the
general contract for the hashCode method, which states
that equal objects must have equal hash codes.
| Parameters | |
|---|---|
o |
Object: This value cannot be null. |
| Returns | |
|---|---|
boolean |
true if this object is the same as the obj
argument; false otherwise. |
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 |
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 |
public String getCodecName ()
Gets the codec name.
| Returns | |
|---|---|
String |
the codec name
This value cannot be null. |
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 |
public int getCodecType ()
Gets the codec type.
| Returns | |
|---|---|
int |
the codec type
Value is SOURCE_CODEC_TYPE_LC3, or SOURCE_CODEC_TYPE_INVALID |
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 |
public int getMaxOctetsPerFrame ()
Returns the maximum octets per frame
| Returns | |
|---|---|
int |
|
public int getMinOctetsPerFrame ()
Returns the minimum octets per frame
| Returns | |
|---|---|
int |
|
public int getOctetsPerFrame ()
Returns the octets per frame
| Returns | |
|---|---|
int |
|
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 |
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. |
public String toString ()
Returns a string representation of the object. In general, the
toString method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
| Returns | |
|---|---|
String |
a string representation of the object. |
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 |