From 1bbb5df4109ee6d52523b84a970111567a08a8f3 Mon Sep 17 00:00:00 2001 From: leonwind Date: Fri, 5 Aug 2022 17:20:54 +0000 Subject: [PATCH] Switch @param to @code tags in RgbAdjustment. PiperOrigin-RevId: 465591877 (cherry picked from commit fe0cf0528318abf1a9a7a8f75bcce402235f961a) --- .../src/main/java/androidx/media3/effect/RgbAdjustment.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java b/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java index 8673131e55..3356b7ba88 100644 --- a/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java +++ b/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java @@ -40,7 +40,7 @@ public final class RgbAdjustment implements RgbaMatrix { } /** - * Scales the red channel of the frame by {@param redScale}. + * Scales the red channel of the frame by {@code redScale}. * * @param redScale The scale to apply to the red channel. Needs to be non-negative and the * default value is {@code 1}. @@ -53,7 +53,7 @@ public final class RgbAdjustment implements RgbaMatrix { } /** - * Scales the green channel of the frame by {@param greenScale}. + * Scales the green channel of the frame by {@code greenScale}. * * @param greenScale The scale to apply to the green channel. Needs to be non-negative and the * default value is {@code 1}. @@ -66,7 +66,7 @@ public final class RgbAdjustment implements RgbaMatrix { } /** - * Scales the blue channel of the frame by {@param blueScale}. + * Scales the blue channel of the frame by {@code blueScale}. * * @param blueScale The scale to apply to the blue channel. Needs to be non-negative and the * default value is {@code 1}.