mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_neighbor: add support for commands
This commit is contained in:
parent
f37bfd3f62
commit
fad62eebee
@ -8632,6 +8632,10 @@ Limit the maximum change for each plane, default is 65535.
|
|||||||
If 0, plane will remain unchanged.
|
If 0, plane will remain unchanged.
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
|
||||||
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section deflicker
|
@section deflicker
|
||||||
|
|
||||||
Remove temporal frame luminance variations.
|
Remove temporal frame luminance variations.
|
||||||
@ -8973,6 +8977,10 @@ Flags to local 3x3 coordinates maps like this:
|
|||||||
6 7 8
|
6 7 8
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
|
||||||
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section displace
|
@section displace
|
||||||
|
|
||||||
Displace pixels as indicated by second and third input stream.
|
Displace pixels as indicated by second and third input stream.
|
||||||
@ -10121,6 +10129,10 @@ Flags to local 3x3 coordinates maps like this:
|
|||||||
6 7 8
|
6 7 8
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
|
||||||
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section extractplanes
|
@section extractplanes
|
||||||
|
|
||||||
Extract color channel components from input video stream into
|
Extract color channel components from input video stream into
|
||||||
@ -12186,6 +12198,10 @@ Limit the maximum change for each plane, default is 65535.
|
|||||||
If 0, plane will remain unchanged.
|
If 0, plane will remain unchanged.
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
|
||||||
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section interlace
|
@section interlace
|
||||||
|
|
||||||
Simple interlacing filter from progressive contents. This interleaves upper (or
|
Simple interlacing filter from progressive contents. This interleaves upper (or
|
||||||
|
@ -353,7 +353,7 @@ static const AVFilterPad neighbor_outputs[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define OFFSET(x) offsetof(NContext, x)
|
#define OFFSET(x) offsetof(NContext, x)
|
||||||
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
|
||||||
|
|
||||||
#define DEFINE_NEIGHBOR_FILTER(name_, description_) \
|
#define DEFINE_NEIGHBOR_FILTER(name_, description_) \
|
||||||
AVFILTER_DEFINE_CLASS(name_); \
|
AVFILTER_DEFINE_CLASS(name_); \
|
||||||
@ -368,6 +368,7 @@ AVFilter ff_vf_##name_ = { \
|
|||||||
.outputs = neighbor_outputs, \
|
.outputs = neighbor_outputs, \
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC| \
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC| \
|
||||||
AVFILTER_FLAG_SLICE_THREADS, \
|
AVFILTER_FLAG_SLICE_THREADS, \
|
||||||
|
.process_command = ff_filter_process_command, \
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_EROSION_FILTER
|
#if CONFIG_EROSION_FILTER
|
||||||
|
Loading…
Reference in New Issue
Block a user