public enum RateDistortionPenaltyMode extends Enum<RateDistortionPenaltyMode>
Enum Constant and Description |
---|
DISABLED
Rate distortion penalty disabled.
|
MAXIMUM
Transform units of size 32x32 are not even attempted, unless otherwise required by the maximum recursion depth.
|
NORMAL
Transform units of size 32x32 are given a 4x bit cost penalty compared to smaller transform units, in intra coded CUs in P or B slices.
|
Modifier and Type | Method and Description |
---|---|
static RateDistortionPenaltyMode |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static RateDistortionPenaltyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RateDistortionPenaltyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateDistortionPenaltyMode DISABLED
public static final RateDistortionPenaltyMode NORMAL
public static final RateDistortionPenaltyMode MAXIMUM
public static RateDistortionPenaltyMode[] values()
for (RateDistortionPenaltyMode c : RateDistortionPenaltyMode.values()) System.out.println(c);
public static RateDistortionPenaltyMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public String toString()
toString
in class Enum<RateDistortionPenaltyMode>
public static RateDistortionPenaltyMode fromValue(String text)
Copyright © 2025. All rights reserved.