public enum VBISampleCoding extends Enum<VBISampleCoding>
Sample coding enumeration, as per SMPTE-436M.
| Enum Constant and Description |
|---|
C10Bit
Chroma only, 10 bits per sample.
|
C1Bit
Chroma only, 1 bit per sample.
|
C8Bit
Chroma only, 8 bits per sample.
|
Y10Bit
Luma only, bits per sample.
|
Y1Bit
Luma only, 1 bit per sample.
|
Y8Bit
Luma only, 8 bits per sample.
|
YC10Bit
Luma and chroma, 10 bits per sample.
|
YC1Bit
Luma and chroma, 1 bit per sample.
|
YC8Bit
Luma and chroma, 8 bits per sample.
|
| Modifier and Type | Method and Description |
|---|---|
static VBISampleCoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VBISampleCoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VBISampleCoding Y1Bit
public static final VBISampleCoding C1Bit
public static final VBISampleCoding YC1Bit
public static final VBISampleCoding Y8Bit
public static final VBISampleCoding C8Bit
public static final VBISampleCoding YC8Bit
public static final VBISampleCoding Y10Bit
public static final VBISampleCoding C10Bit
public static final VBISampleCoding YC10Bit
public static VBISampleCoding[] values()
for (VBISampleCoding c : VBISampleCoding.values()) System.out.println(c);
public static VBISampleCoding 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 null(c)2007-2016 Richard Cartwright, all rights reserved. Licensed under Apache 2 license and subject to the AMWA IPR policy.