Package im.zego.zegoexpress.constants
Enum ZegoVideoEncodedFrameFormat
- java.lang.Object
-
- java.lang.Enum<ZegoVideoEncodedFrameFormat>
-
- im.zego.zegoexpress.constants.ZegoVideoEncodedFrameFormat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ZegoVideoEncodedFrameFormat>
public enum ZegoVideoEncodedFrameFormat extends java.lang.Enum<ZegoVideoEncodedFrameFormat>
Video encoded frame format.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AnnexB
AVC Annex-B formatAVCC
AVC AVCC formatHEVCAnnexB
HEVC Annex-B formatHEVCAVCC
HEVC AVCC formatVP8
VP8 format
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZegoVideoEncodedFrameFormat
getZegoVideoEncodedFrameFormat(int value)
int
value()
static ZegoVideoEncodedFrameFormat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ZegoVideoEncodedFrameFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVCC
public static final ZegoVideoEncodedFrameFormat AVCC
AVC AVCC format
-
AnnexB
public static final ZegoVideoEncodedFrameFormat AnnexB
AVC Annex-B format
-
VP8
public static final ZegoVideoEncodedFrameFormat VP8
VP8 format
-
HEVCAVCC
public static final ZegoVideoEncodedFrameFormat HEVCAVCC
HEVC AVCC format
-
HEVCAnnexB
public static final ZegoVideoEncodedFrameFormat HEVCAnnexB
HEVC Annex-B format
-
-
Method Detail
-
values
public static ZegoVideoEncodedFrameFormat[] 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 (ZegoVideoEncodedFrameFormat c : ZegoVideoEncodedFrameFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZegoVideoEncodedFrameFormat valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
value
public int value()
-
getZegoVideoEncodedFrameFormat
public static ZegoVideoEncodedFrameFormat getZegoVideoEncodedFrameFormat(int value)
-
-