
public static enum Container.Flag extends Enum<Container.Flag>
| Enum Constant and Description |
|---|
FLAG_CUSTOM_IO
The caller has supplied a custom AVIOContext, don't avio_close() it.
|
FLAG_DISCARD_CORRUPT
Discard frames marked corrupted *
|
FLAG_GENPTS
Generate missing pts even if it requires parsing future frames.
|
FLAG_IGNDTS
Ignore DTS on frames that contain both DTS & PTS *
|
FLAG_IGNIDX
Ignore index.
|
FLAG_KEEP_SIDE_DATA
Don't merge side data but keep it separate.
|
FLAG_MP4A_LATM
Enable RTP MP4A-LATM payload *
|
FLAG_NOBUFFER
Do not buffer frames when possible *
|
FLAG_NOFILLIN
Do not infer any values from other values, just return what is stored in the container *
|
FLAG_NONBLOCK
Do not block when reading packets from input.
|
FLAG_NOPARSE
Do not use AVParsers, you also must set AVFMT_FLAG_NOFILLIN as the fillin code works on frames and no parsing -> no frames.
|
FLAG_PRIV_OPT
Enable use of private options by delaying codec open (this could be made default once all code is converted) *
|
FLAG_SORT_DTS
try to interleave outputted packets by dts (using this flag can slow demuxing down) *
|
| Modifier and Type | Method and Description |
|---|---|
static Container.Flag |
swigToEnum(int swigValue) |
int |
swigValue() |
static Container.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Container.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Container.Flag FLAG_GENPTS
public static final Container.Flag FLAG_IGNIDX
public static final Container.Flag FLAG_NONBLOCK
public static final Container.Flag FLAG_IGNDTS
public static final Container.Flag FLAG_NOFILLIN
public static final Container.Flag FLAG_NOPARSE
public static final Container.Flag FLAG_NOBUFFER
public static final Container.Flag FLAG_CUSTOM_IO
public static final Container.Flag FLAG_DISCARD_CORRUPT
public static final Container.Flag FLAG_MP4A_LATM
public static final Container.Flag FLAG_SORT_DTS
public static final Container.Flag FLAG_PRIV_OPT
public static final Container.Flag FLAG_KEEP_SIDE_DATA
public static Container.Flag[] values()
for (Container.Flag c : Container.Flag.values()) System.out.println(c);
public static Container.Flag 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 swigValue()
public static Container.Flag swigToEnum(int swigValue)
Copyright © 2018 Humble Software. All rights reserved.