Enum ProresChromaSampling
- java.lang.Object
-
- java.lang.Enum<ProresChromaSampling>
-
- software.amazon.awssdk.services.mediaconvert.model.ProresChromaSampling
-
- All Implemented Interfaces:
Serializable,Comparable<ProresChromaSampling>
@Generated("software.amazon.awssdk:codegen") public enum ProresChromaSampling extends Enum<ProresChromaSampling>
This setting applies only to ProRes 4444 and ProRes 4444 XQ outputs that you create from inputs that use 4:4:4 chroma sampling. Set Preserve 4:4:4 sampling to allow outputs to also use 4:4:4 chroma sampling. You must specify a value for this setting when your output codec profile supports 4:4:4 chroma sampling. Related Settings: For Apple ProRes outputs with 4:4:4 chroma sampling: Choose Preserve 4:4:4 sampling. Use when your input has 4:4:4 chroma sampling and your output codec Profile is Apple ProRes 4444 or 4444 XQ. Note that when you choose Preserve 4:4:4 sampling, you cannot include any of the following Preprocessors: Dolby Vision, HDR10+, or Noise reducer.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PRESERVE_444_SAMPLINGSUBSAMPLE_TO_422UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProresChromaSamplingfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ProresChromaSampling>knownValues()StringtoString()static ProresChromaSamplingvalueOf(String name)Returns the enum constant of this type with the specified name.static ProresChromaSampling[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESERVE_444_SAMPLING
public static final ProresChromaSampling PRESERVE_444_SAMPLING
-
SUBSAMPLE_TO_422
public static final ProresChromaSampling SUBSAMPLE_TO_422
-
UNKNOWN_TO_SDK_VERSION
public static final ProresChromaSampling UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ProresChromaSampling[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProresChromaSampling c : ProresChromaSampling.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProresChromaSampling valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<ProresChromaSampling>
-
fromValue
public static ProresChromaSampling fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ProresChromaSampling corresponding to the value
-
knownValues
public static Set<ProresChromaSampling> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownProresChromaSamplings
-
-