public enum VideoCodecs extends java.lang.Enum<VideoCodecs>
| Enum Constant and Description |
|---|
H264_HARDWARE
硬编码
|
H264_SOFT_OPENH264
OpenH264 软编码
|
| Modifier and Type | Method and Description |
|---|---|
static VideoCodecs |
getInstanceByValue(int v) |
static VideoCodecs |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoCodecs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoCodecs H264_HARDWARE
public static final VideoCodecs H264_SOFT_OPENH264
public static VideoCodecs[] values()
for (VideoCodecs c : VideoCodecs.values()) System.out.println(c);
public static VideoCodecs 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 VideoCodecs getInstanceByValue(int v)