mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 11:39:49 +00:00
avfilter/vf_despill: add support for commands
This commit is contained in:
parent
e3081d6f4f
commit
17a0dfebf5
@ -9410,6 +9410,10 @@ Controls brightness of spill area, preserving colors.
|
|||||||
Modify alpha from generated spillmap.
|
Modify alpha from generated spillmap.
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
|
||||||
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section detelecine
|
@section detelecine
|
||||||
|
|
||||||
Apply an exact inverse of the telecine operation. It requires a predefined
|
Apply an exact inverse of the telecine operation. It requires a predefined
|
||||||
|
@ -153,7 +153,7 @@ static const AVFilterPad despill_outputs[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define OFFSET(x) offsetof(DespillContext, x)
|
#define OFFSET(x) offsetof(DespillContext, 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
|
||||||
|
|
||||||
static const AVOption despill_options[] = {
|
static const AVOption despill_options[] = {
|
||||||
{ "type", "set the screen type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "type" },
|
{ "type", "set the screen type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "type" },
|
||||||
@ -179,5 +179,6 @@ AVFilter ff_vf_despill = {
|
|||||||
.query_formats = query_formats,
|
.query_formats = query_formats,
|
||||||
.inputs = despill_inputs,
|
.inputs = despill_inputs,
|
||||||
.outputs = despill_outputs,
|
.outputs = despill_outputs,
|
||||||
|
.process_command = ff_filter_process_command,
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user