
public static enum ContainerStream.ParseType extends Enum<ContainerStream.ParseType>
| Enum Constant and Description |
|---|
PARSE_FULL
full parsing and repack
|
PARSE_FULL_ONCE
full parsing and repack of the first frame only, only implemented for H.264 currently
|
PARSE_FULL_RAW
full parsing and repack with timestamp and position generation by parser for raw
this assumes that each packet in the file contains no demuxer level headers and just codec level data, otherwise position generation would fail |
PARSE_HEADERS
Only parse headers, do not repack.
|
PARSE_NONE
No special instructions
|
PARSE_TIMESTAMPS
full parsing and interpolation of timestamps for frames not starting on a packet boundary
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerStream.ParseType |
swigToEnum(int swigValue) |
int |
swigValue() |
static ContainerStream.ParseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerStream.ParseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerStream.ParseType PARSE_NONE
public static final ContainerStream.ParseType PARSE_FULL
public static final ContainerStream.ParseType PARSE_HEADERS
public static final ContainerStream.ParseType PARSE_TIMESTAMPS
public static final ContainerStream.ParseType PARSE_FULL_ONCE
public static final ContainerStream.ParseType PARSE_FULL_RAW
public static ContainerStream.ParseType[] values()
for (ContainerStream.ParseType c : ContainerStream.ParseType.values()) System.out.println(c);
public static ContainerStream.ParseType 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 ContainerStream.ParseType swigToEnum(int swigValue)
Copyright © 2018 Humble Software. All rights reserved.