public enum CodecFlag extends Enum<CodecFlag>
| Enum Constant and Description |
|---|
AC_PRED
H.263 advanced intra coding / MPEG-4 AC prediction
|
BITEXACT
Use only bitexact stuff (except (I)DCT).
|
CHUNKS
Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries.
|
CLOSED_GOP |
DROP_FRAME_TIMECODE
Timecode is in drop frame format.
|
EMU_EDGE
Don't draw edges.
|
FAST
Allow non spec compliant speedup tricks.
|
GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
|
GRAY
Only decode/encode grayscale.
|
IGNORE_CROP
Discard cropping information from SPS.
|
INPUT_PRESERVED |
INTERLACED_DCT
Use interlaced DCT.
|
INTERLACED_ME
interlaced motion estimation
|
LOCAL_HEADER
Place global headers at every keyframe instead of in extradata.
|
LOOP_FILTER
loop filter
|
LOW_DELAY
Force low delay.
|
NO_OUTPUT
Skip bitstream encoding.
|
NORMALIZE_AQP
Normalize adaptive quantization.
|
PASS1
Use internal 2pass rate control in first pass mode.
|
PASS2
Use internal 2pass rate control in second pass mode.
|
PSNR
error[?]
|
SHOW_ALL
Show all frames before the first keyframe
|
TRUNCATED
Input bitstream might be truncated at a random location instead of only at frame boundaries.
|
| Modifier and Type | Method and Description |
|---|---|
static CodecFlag |
byId(int id)
Get a
CodecFlag that matches to the specified FFmpeg id. |
int |
value()
Get the codec flag id defined in FFmpeg.
|
static CodecFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodecFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodecFlag INPUT_PRESERVED
public static final CodecFlag PASS1
public static final CodecFlag PASS2
public static final CodecFlag GRAY
public static final CodecFlag EMU_EDGE
public static final CodecFlag PSNR
public static final CodecFlag TRUNCATED
public static final CodecFlag NORMALIZE_AQP
public static final CodecFlag INTERLACED_DCT
public static final CodecFlag LOW_DELAY
public static final CodecFlag GLOBAL_HEADER
public static final CodecFlag BITEXACT
public static final CodecFlag AC_PRED
public static final CodecFlag LOOP_FILTER
public static final CodecFlag INTERLACED_ME
public static final CodecFlag CLOSED_GOP
public static final CodecFlag FAST
public static final CodecFlag NO_OUTPUT
public static final CodecFlag LOCAL_HEADER
public static final CodecFlag DROP_FRAME_TIMECODE
public static final CodecFlag IGNORE_CROP
public static final CodecFlag CHUNKS
public static final CodecFlag SHOW_ALL
public static CodecFlag[] values()
for (CodecFlag c : CodecFlag.values()) System.out.println(c);
public static CodecFlag valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic final int value()
public static CodecFlag byId(int id)
CodecFlag that matches to the specified FFmpeg id.id - FFmpeg codec flag id.null if id is not defined.Copyright © 2013. All Rights Reserved.