Enum AVDebugInfoType
- java.lang.Object
-
- java.lang.Enum<AVDebugInfoType>
-
- com.github.vbauer.avconv4java.type.AVDebugInfoType
-
- All Implemented Interfaces:
NamedType,java.io.Serializable,java.lang.Comparable<AVDebugInfoType>
public enum AVDebugInfoType extends java.lang.Enum<AVDebugInfoType> implements NamedType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAVDebugInfoType.Constants
-
Enum Constant Summary
Enum Constants Enum Constant Description BIT_STREAMBUFFERSPicture buffer allocations.BUGSDCT_COEFFERMB_TYPEMMCOMemory management control operations (H.264).MVMotion vector.PICTPicture info.PTSQPPer-block quantization parameter (QP).RCSKIPSTART_CODETHREAD_OPSThreading operations.VIS_MB_TYPEVisualize block types.VIS_QPVisualize quantization parameter (QP), lower QP are tinted greener.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AVDebugInfoTypefindByName(java.lang.String name)java.lang.StringgetName()static AVDebugInfoTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AVDebugInfoType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PICT
public static final AVDebugInfoType PICT
Picture info.
-
RC
public static final AVDebugInfoType RC
-
BIT_STREAM
public static final AVDebugInfoType BIT_STREAM
-
MB_TYPE
public static final AVDebugInfoType MB_TYPE
-
QP
public static final AVDebugInfoType QP
Per-block quantization parameter (QP).
-
MV
public static final AVDebugInfoType MV
Motion vector.
-
DCT_COEFF
public static final AVDebugInfoType DCT_COEFF
-
SKIP
public static final AVDebugInfoType SKIP
-
START_CODE
public static final AVDebugInfoType START_CODE
-
PTS
public static final AVDebugInfoType PTS
-
ER
public static final AVDebugInfoType ER
-
MMCO
public static final AVDebugInfoType MMCO
Memory management control operations (H.264).
-
BUGS
public static final AVDebugInfoType BUGS
-
VIS_QP
public static final AVDebugInfoType VIS_QP
Visualize quantization parameter (QP), lower QP are tinted greener.
-
VIS_MB_TYPE
public static final AVDebugInfoType VIS_MB_TYPE
Visualize block types.
-
BUFFERS
public static final AVDebugInfoType BUFFERS
Picture buffer allocations.
-
THREAD_OPS
public static final AVDebugInfoType THREAD_OPS
Threading operations.
-
-
Method Detail
-
values
public static AVDebugInfoType[] 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 (AVDebugInfoType c : AVDebugInfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AVDebugInfoType 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
-
findByName
public static AVDebugInfoType findByName(java.lang.String name)
-
-