From 591df136c965cf451dc13d6c1ba140f068065f92 Mon Sep 17 00:00:00 2001 From: Daniel Cardenas Date: Mon, 25 Jan 2021 09:13:14 -0800 Subject: [PATCH] Update class comment. An AudioProfile is specific to an audio format and lists supported sampling rates and channel masks for that format. An {@link AudioDeviceInfo} has a list of supported AudioProfiles. Test: None Change-Id: I491c60d88be2abc93463a0a85ed96d8c6c7601ed --- media/java/android/media/AudioProfile.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/media/java/android/media/AudioProfile.java b/media/java/android/media/AudioProfile.java index 42041667476a3..3cd615b658b2c 100644 --- a/media/java/android/media/AudioProfile.java +++ b/media/java/android/media/AudioProfile.java @@ -19,10 +19,8 @@ package android.media; import android.annotation.NonNull; /** - * AudioProfile is a class used by {@link AudioDeviceInfo} to list the audio formats, sampling rates - * and channel masks supported. - * Each AudioProfile is specific to an audio format and lists all sampling rates and channel masks - * supported for this format. + * An AudioProfile is specific to an audio format and lists supported sampling rates and + * channel masks for that format. An {@link AudioDeviceInfo} has a list of supported AudioProfiles. */ public class AudioProfile { private final int mFormat;