public enum VideoFrameFormat extends java.lang.Enum<VideoFrameFormat>
Enum Constant and Description |
---|
ARGB
24bpp interleaved ARGB non-planar
|
RGBA
24bpp interleaved RGBA non-planar
|
YUV420p
12bpp YUV420 planar
|
Modifier and Type | Method and Description |
---|---|
static VideoFrameFormat |
fromInt(int i) |
static VideoFrameFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoFrameFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoFrameFormat YUV420p
public static final VideoFrameFormat RGBA
public static final VideoFrameFormat ARGB
public static VideoFrameFormat[] values()
for (VideoFrameFormat c : VideoFrameFormat.values()) System.out.println(c);
public static VideoFrameFormat 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 namejava.lang.NullPointerException
- if the argument is nullpublic static VideoFrameFormat fromInt(int i)