Enum AVFormatFlagType
- java.lang.Object
-
- java.lang.Enum<AVFormatFlagType>
-
- com.github.vbauer.avconv4java.type.AVFormatFlagType
-
- All Implemented Interfaces:
NamedType,java.io.Serializable,java.lang.Comparable<AVFormatFlagType>
public enum AVFormatFlagType extends java.lang.Enum<AVFormatFlagType> implements NamedType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAVFormatFlagType.Constants
-
Enum Constant Summary
Enum Constants Enum Constant Description DISCARD_CORRUPTEDDiscard corrupted frames.FLUSH_PACKETSReduce the latency by flushing out packets immediately.GENERATE_PTSGenerate pts.IGNORE_DTSIgnore dts.IGNORE_INDEXIgnore index.NO_BUFFERReduce the latency introduced by optional buffering.NO_FILL_INDo not fill in missing values that can be exactly calculated.NO_PARSEDisable AVParsers, this needs nofillin too.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AVFormatFlagTypefindByName(java.lang.String name)java.lang.StringgetName()static AVFormatFlagTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AVFormatFlagType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FLUSH_PACKETS
public static final AVFormatFlagType FLUSH_PACKETS
Reduce the latency by flushing out packets immediately.
-
IGNORE_INDEX
public static final AVFormatFlagType IGNORE_INDEX
Ignore index.
-
GENERATE_PTS
public static final AVFormatFlagType GENERATE_PTS
Generate pts.
-
NO_FILL_IN
public static final AVFormatFlagType NO_FILL_IN
Do not fill in missing values that can be exactly calculated.
-
NO_PARSE
public static final AVFormatFlagType NO_PARSE
Disable AVParsers, this needs nofillin too.
-
IGNORE_DTS
public static final AVFormatFlagType IGNORE_DTS
Ignore dts.
-
DISCARD_CORRUPTED
public static final AVFormatFlagType DISCARD_CORRUPTED
Discard corrupted frames.
-
NO_BUFFER
public static final AVFormatFlagType NO_BUFFER
Reduce the latency introduced by optional buffering.
-
-
Method Detail
-
values
public static AVFormatFlagType[] 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 (AVFormatFlagType c : AVFormatFlagType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AVFormatFlagType 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 AVFormatFlagType findByName(java.lang.String name)
-
-