
public static enum FilterType.Flag extends Enum<FilterType.Flag>
| Enum Constant and Description |
|---|
FILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by the number of inputs explicitly added.
The filter might add additional inputs during initialization depending on the options supplied to it. |
FILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
The filter might add additional outputs during initialization depending on the options supplied to it. |
FILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts
and processing them concurrently. |
FILTER_FLAG_SUPPORT_TIMELINE
Handy mask to test whether the filter supports or no the timeline feature
(internally or generically). |
FILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used
to enable or disable a filter in the timeline. |
FILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will
have its filter_frame() callback(s) called as usual even when the enable expression is false. |
FILTER_FLAG_UNKNOWN
Do not use.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterType.Flag |
swigToEnum(int swigValue) |
int |
swigValue() |
static FilterType.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterType.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterType.Flag FILTER_FLAG_UNKNOWN
public static final FilterType.Flag FILTER_FLAG_DYNAMIC_INPUTS
public static final FilterType.Flag FILTER_FLAG_DYNAMIC_OUTPUTS
public static final FilterType.Flag FILTER_FLAG_SLICE_THREADS
public static final FilterType.Flag FILTER_FLAG_SUPPORT_TIMELINE_GENERIC
public static final FilterType.Flag FILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
public static final FilterType.Flag FILTER_FLAG_SUPPORT_TIMELINE
public static FilterType.Flag[] values()
for (FilterType.Flag c : FilterType.Flag.values()) System.out.println(c);
public static FilterType.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 FilterType.Flag swigToEnum(int swigValue)
Copyright © 2018 Humble Software. All rights reserved.