From 58650b87d62465321a70f88c4b156bcf6dd06a7c Mon Sep 17 00:00:00 2001 From: tonihei Date: Fri, 10 Feb 2023 10:08:46 +0000 Subject: [PATCH] Document spatialization behavior constants. PiperOrigin-RevId: 508602059 (cherry picked from commit 1c29131016c9d140ca40d7f1b9038eeffb343bf7) --- .../src/main/java/com/google/android/exoplayer2/C.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/library/common/src/main/java/com/google/android/exoplayer2/C.java b/library/common/src/main/java/com/google/android/exoplayer2/C.java index 30e645cca7..989329449b 100644 --- a/library/common/src/main/java/com/google/android/exoplayer2/C.java +++ b/library/common/src/main/java/com/google/android/exoplayer2/C.java @@ -327,7 +327,10 @@ public final class C { */ public static final int ENCODING_OPUS = AudioFormat.ENCODING_OPUS; - /** Represents the behavior affecting whether spatialization will be used. */ + /** + * Represents the behavior affecting whether spatialization will be used. One of {@link + * #SPATIALIZATION_BEHAVIOR_AUTO} or {@link #SPATIALIZATION_BEHAVIOR_NEVER}. + */ @Documented @Retention(RetentionPolicy.SOURCE) @Target(TYPE_USE)