docs/doc/reference/com/google/android/exoplayer2/effect/RgbAdjustment.Builder.html
Package com.google.android.exoplayer2.effect
Enclosing class:RgbAdjustment
public static final classRgbAdjustment.Builderextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")
A builder for RgbAdjustment instances.
Constructors | Constructor | Description |
| --- | --- |
| Builder() |
Creates a new instance with default values.
|
All Methods Instance Methods Concrete Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| RgbAdjustment | build() |
Creates a new RgbAdjustment instance.
|
| RgbAdjustment.Builder | setBlueScale(float blueScale) |
Scales the blue channel of the frame by blueScale.
|
| RgbAdjustment.Builder | setGreenScale(float greenScale) |
Scales the green channel of the frame by greenScale.
|
| RgbAdjustment.Builder | setRedScale(float redScale) |
Scales the red channel of the frame by redScale.
|
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public Builder()
Creates a new instance with default values.
-
@CanIgnoreReturnValue
public[RgbAdjustment.Builder](RgbAdjustment.Builder.html "class in com.google.android.exoplayer2.effect")setRedScale(@FloatRange(from=0.0)
float redScale)
Scales the red channel of the frame by redScale.
Parameters:redScale - The scale to apply to the red channel. Needs to be non-negative and the default value is 1.
-
@CanIgnoreReturnValue
public[RgbAdjustment.Builder](RgbAdjustment.Builder.html "class in com.google.android.exoplayer2.effect")setGreenScale(@FloatRange(from=0.0)
float greenScale)
Scales the green channel of the frame by greenScale.
Parameters:greenScale - The scale to apply to the green channel. Needs to be non-negative and the default value is 1.
-
@CanIgnoreReturnValue
public[RgbAdjustment.Builder](RgbAdjustment.Builder.html "class in com.google.android.exoplayer2.effect")setBlueScale(@FloatRange(from=0.0)
float blueScale)
Scales the blue channel of the frame by blueScale.
Parameters:blueScale - The scale to apply to the blue channel. Needs to be non-negative and the default value is 1.
-
public[RgbAdjustment](RgbAdjustment.html "class in com.google.android.exoplayer2.effect")build()
Creates a new RgbAdjustment instance.