Enum AVCodecFlagType
- java.lang.Object
-
- java.lang.Enum<AVCodecFlagType>
-
- com.github.vbauer.avconv4java.type.AVCodecFlagType
-
- All Implemented Interfaces:
NamedType,java.io.Serializable,java.lang.Comparable<AVCodecFlagType>
public enum AVCodecFlagType extends java.lang.Enum<AVCodecFlagType> implements NamedType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAVCodecFlagType.Constants
-
Enum Constant Summary
Enum Constants Enum Constant Description AICH.263 advanced intra coding / MPEG-4 AC prediction.BITEXACTUse only bitexact functions (except (I)DCT).CGOPClosed GOP.EMU_EDGEDo not draw edges.GLOBAL_HEADERPlace global headers in extradata instead of every keyframe.GMCUse gmc.GRAYOnly decode/encode grayscale.ILDCTUse interlaced DCT.ILMEInterlaced motion estimation.INPUT_PRESERVEDUse internal 2-pass ratecontrol in first pass mode.LOOPUse loop filter.LOW_DELAYForce low delay.MV0Always try a mb with mv="0,0".MV4Use four motion vectors per macroblock (MPEG-4).NAQOUTPUT_CORRUPTOutput even potentially corrupted frames.PASS1PASS2Use internal 2-pass ratecontrol in second pass mode.PSNRError[?] variables will be set during encoding.QPELUse 1/4-pel motion compensation.QSCALEUse fixed qscale.TRUNCATEDNormalize adaptive quantization.UNALIGNEDAllow decoders to produce unaligned output.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AVCodecFlagTypefindByName(java.lang.String name)java.lang.StringgetName()static AVCodecFlagTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AVCodecFlagType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNALIGNED
public static final AVCodecFlagType UNALIGNED
Allow decoders to produce unaligned output.
-
MV4
public static final AVCodecFlagType MV4
Use four motion vectors per macroblock (MPEG-4).
-
QPEL
public static final AVCodecFlagType QPEL
Use 1/4-pel motion compensation.
-
LOOP
public static final AVCodecFlagType LOOP
Use loop filter.
-
QSCALE
public static final AVCodecFlagType QSCALE
Use fixed qscale.
-
GMC
public static final AVCodecFlagType GMC
Use gmc.
-
MV0
public static final AVCodecFlagType MV0
Always try a mb with mv="0,0".
-
INPUT_PRESERVED
public static final AVCodecFlagType INPUT_PRESERVED
Use internal 2-pass ratecontrol in first pass mode.
-
PASS1
public static final AVCodecFlagType PASS1
-
PASS2
public static final AVCodecFlagType PASS2
Use internal 2-pass ratecontrol in second pass mode.
-
GRAY
public static final AVCodecFlagType GRAY
Only decode/encode grayscale.
-
EMU_EDGE
public static final AVCodecFlagType EMU_EDGE
Do not draw edges.
-
PSNR
public static final AVCodecFlagType PSNR
Error[?] variables will be set during encoding.
-
TRUNCATED
public static final AVCodecFlagType TRUNCATED
Normalize adaptive quantization.
-
NAQ
public static final AVCodecFlagType NAQ
-
ILDCT
public static final AVCodecFlagType ILDCT
Use interlaced DCT.
-
LOW_DELAY
public static final AVCodecFlagType LOW_DELAY
Force low delay.
-
GLOBAL_HEADER
public static final AVCodecFlagType GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
-
BITEXACT
public static final AVCodecFlagType BITEXACT
Use only bitexact functions (except (I)DCT).
-
AIC
public static final AVCodecFlagType AIC
H.263 advanced intra coding / MPEG-4 AC prediction.
-
ILME
public static final AVCodecFlagType ILME
Interlaced motion estimation.
-
CGOP
public static final AVCodecFlagType CGOP
Closed GOP.
-
OUTPUT_CORRUPT
public static final AVCodecFlagType OUTPUT_CORRUPT
Output even potentially corrupted frames.
-
-
Method Detail
-
values
public static AVCodecFlagType[] 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 (AVCodecFlagType c : AVCodecFlagType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AVCodecFlagType 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 AVCodecFlagType findByName(java.lang.String name)
-
-