|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PictureCodingExtensionHeader.Flag>
fi.helsinki.cs.ohtu.mpeg2.video.PictureCodingExtensionHeader.Flag
public static enum PictureCodingExtensionHeader.Flag
Represents the different non-frame-structure flags possibly specified by this header. The valid combinations of the frame structure flags are specified using the FrameStructure enum.
Enum Constant Summary | |
---|---|
ALTERNATE_INTRA_VLC
Specifies that the alternate table is used for the variable length coding of intra blocks in the picture. |
|
ALTERNATE_SCAN_PATTERN
Specifies that the alternate scanning pattern is used for converting the DCT coefficients table for the picture to a one-dimensional array. |
|
CHROMA_FORMAT_420
Should be set when the enclosing video sequence's chroma format is Y:Cb:Cr 4:2:0. |
|
CONCEALMENT_MOTION_VECTORS
Intra macroblocks can also contain motion vectors. |
|
FRAME_PREDICTION_AND_DCT
Only frame-based DCT and frame-based prediction are used (no field variants). |
|
NON_LINEAR_QUANTISER_SCALE
Specifies that the alternate non-linear quantiser scale ramp should be used for decoding the picture. |
Method Summary | |
---|---|
static PictureCodingExtensionHeader.Flag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PictureCodingExtensionHeader.Flag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PictureCodingExtensionHeader.Flag FRAME_PREDICTION_AND_DCT
public static final PictureCodingExtensionHeader.Flag CONCEALMENT_MOTION_VECTORS
public static final PictureCodingExtensionHeader.Flag NON_LINEAR_QUANTISER_SCALE
public static final PictureCodingExtensionHeader.Flag ALTERNATE_INTRA_VLC
public static final PictureCodingExtensionHeader.Flag ALTERNATE_SCAN_PATTERN
public static final PictureCodingExtensionHeader.Flag CHROMA_FORMAT_420
Method Detail |
---|
public static PictureCodingExtensionHeader.Flag[] values()
for (PictureCodingExtensionHeader.Flag c : PictureCodingExtensionHeader.Flag.values()) System.out.println(c);
public static PictureCodingExtensionHeader.Flag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |