Commit 21b07ba4 by olly Committed by Christos Tsilopoulos

Fix broken @value Javadoc

PiperOrigin-RevId: 318077821
parent 35cd367c
...@@ -177,7 +177,7 @@ public final class ImaAdsLoader implements Player.EventListener, AdsLoader { ...@@ -177,7 +177,7 @@ public final class ImaAdsLoader implements Player.EventListener, AdsLoader {
* Sets the duration in milliseconds for which the player must buffer while preloading an ad * Sets the duration in milliseconds for which the player must buffer while preloading an ad
* group before that ad group is skipped and marked as having failed to load. Pass {@link * group before that ad group is skipped and marked as having failed to load. Pass {@link
* C#TIME_UNSET} if there should be no such timeout. The default value is {@value * C#TIME_UNSET} if there should be no such timeout. The default value is {@value
* DEFAULT_AD_PRELOAD_TIMEOUT_MS} ms. * #DEFAULT_AD_PRELOAD_TIMEOUT_MS} ms.
* *
* <p>The purpose of this timeout is to avoid playback getting stuck in the unexpected case that * <p>The purpose of this timeout is to avoid playback getting stuck in the unexpected case that
* the IMA SDK does not load an ad break based on the player's reported content position. * the IMA SDK does not load an ad break based on the player's reported content position.
......
...@@ -50,7 +50,7 @@ public final class AuxEffectInfo { ...@@ -50,7 +50,7 @@ public final class AuxEffectInfo {
* Creates an instance with the given effect identifier and send level. * Creates an instance with the given effect identifier and send level.
* *
* @param effectId The effect identifier. This is the value returned by {@link * @param effectId The effect identifier. This is the value returned by {@link
* AudioEffect#getId()} on the effect, or {@value NO_AUX_EFFECT_ID} which represents no * AudioEffect#getId()} on the effect, or {@value #NO_AUX_EFFECT_ID} which represents no
* effect. This value is passed to {@link AudioTrack#attachAuxEffect(int)} on the underlying * effect. This value is passed to {@link AudioTrack#attachAuxEffect(int)} on the underlying
* audio track. * audio track.
* @param sendLevel The send level for the effect, where 0 represents no effect and a value of 1 * @param sendLevel The send level for the effect, where 0 represents no effect and a value of 1
......
...@@ -204,8 +204,8 @@ public final class GlUtil { ...@@ -204,8 +204,8 @@ public final class GlUtil {
private GlUtil() {} private GlUtil() {}
/** /**
* Returns whether creating a GL context with {@value EXTENSION_PROTECTED_CONTENT} is possible. If * Returns whether creating a GL context with {@value #EXTENSION_PROTECTED_CONTENT} is possible.
* {@code true}, the device supports a protected output path for DRM content when using GL. * If {@code true}, the device supports a protected output path for DRM content when using GL.
*/ */
public static boolean isProtectedContentExtensionSupported(Context context) { public static boolean isProtectedContentExtensionSupported(Context context) {
if (Util.SDK_INT < 24) { if (Util.SDK_INT < 24) {
...@@ -232,7 +232,7 @@ public final class GlUtil { ...@@ -232,7 +232,7 @@ public final class GlUtil {
} }
/** /**
* Returns whether creating a GL context with {@value EXTENSION_SURFACELESS_CONTEXT} is possible. * Returns whether creating a GL context with {@value #EXTENSION_SURFACELESS_CONTEXT} is possible.
*/ */
public static boolean isSurfacelessContextExtensionSupported() { public static boolean isSurfacelessContextExtensionSupported() {
if (Util.SDK_INT < 17) { if (Util.SDK_INT < 17) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment