From c6a4b86cd621c48b697f74deef998671d6072f79 Mon Sep 17 00:00:00 2001 From: Etienne Ruffieux Date: Wed, 16 Mar 2022 15:01:14 +0000 Subject: Added documentation on codec specifics. Bug: 220890820 Tag: #feature Test: atest Change-Id: Ib91d649a3627c50638805178877731e63099d838 --- framework/java/android/bluetooth/BluetoothCodecConfig.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'framework/java/android/bluetooth/BluetoothCodecConfig.java') diff --git a/framework/java/android/bluetooth/BluetoothCodecConfig.java b/framework/java/android/bluetooth/BluetoothCodecConfig.java index d0e426853c..16b787db8e 100644 --- a/framework/java/android/bluetooth/BluetoothCodecConfig.java +++ b/framework/java/android/bluetooth/BluetoothCodecConfig.java @@ -536,6 +536,8 @@ public final class BluetoothCodecConfig implements Parcelable { /** * Returns the codec specific value1. + * As the value and usage differ for each codec, please refer to the concerned + * codec specification to obtain the codec specific information. */ public long getCodecSpecific1() { return mCodecSpecific1; @@ -543,6 +545,8 @@ public final class BluetoothCodecConfig implements Parcelable { /** * Returns the codec specific value2. + * As the value and usage differ for each codec, please refer to the concerned + * codec specification to obtain the codec specific information. */ public long getCodecSpecific2() { return mCodecSpecific2; @@ -550,6 +554,8 @@ public final class BluetoothCodecConfig implements Parcelable { /** * Returns the codec specific value3. + * As the value and usage differ for each codec, please refer to the concerned + * codec specification to obtain the codec specific information. */ public long getCodecSpecific3() { return mCodecSpecific3; @@ -557,6 +563,8 @@ public final class BluetoothCodecConfig implements Parcelable { /** * Returns the codec specific value4. + * As the value and usage differ for each codec, please refer to the concerned + * codec specification to obtain the codec specific information. */ public long getCodecSpecific4() { return mCodecSpecific4; -- cgit v1.2.3