You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavfi/kerndeint: switch to AVOption-based system
This commit is contained in:
@@ -3783,11 +3783,6 @@ Deinterlace input video by applying Donald Graft's adaptive kernel
|
|||||||
deinterling. Work on interlaced parts of a video to produce
|
deinterling. Work on interlaced parts of a video to produce
|
||||||
progressive frames.
|
progressive frames.
|
||||||
|
|
||||||
This filter accepts parameters as a list of @var{key}=@var{value}
|
|
||||||
pairs, separated by ":". If the key of the first options is omitted,
|
|
||||||
the arguments are interpreted according to the following syntax:
|
|
||||||
@var{thresh}:@var{map}:@var{order}:@var{sharp}:@var{twoway}.
|
|
||||||
|
|
||||||
The description of the accepted parameters follows.
|
The description of the accepted parameters follows.
|
||||||
|
|
||||||
@table @option
|
@table @option
|
||||||
|
@@ -679,6 +679,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
|
|||||||
!strcmp(filter->filter->name, "gradfun" ) ||
|
!strcmp(filter->filter->name, "gradfun" ) ||
|
||||||
!strcmp(filter->filter->name, "hqdn3d" ) ||
|
!strcmp(filter->filter->name, "hqdn3d" ) ||
|
||||||
!strcmp(filter->filter->name, "il" ) ||
|
!strcmp(filter->filter->name, "il" ) ||
|
||||||
|
!strcmp(filter->filter->name, "kerndeint" ) ||
|
||||||
!strcmp(filter->filter->name, "ocv" ) ||
|
!strcmp(filter->filter->name, "ocv" ) ||
|
||||||
!strcmp(filter->filter->name, "lut" ) ||
|
!strcmp(filter->filter->name, "lut" ) ||
|
||||||
!strcmp(filter->filter->name, "lutyuv" ) ||
|
!strcmp(filter->filter->name, "lutyuv" ) ||
|
||||||
|
@@ -305,7 +305,6 @@ static const AVFilterPad kerndeint_outputs[] = {
|
|||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *const shorthand[] = { "thresh", "map", "order", "sharp", "twoway", NULL };
|
|
||||||
|
|
||||||
AVFilter avfilter_vf_kerndeint = {
|
AVFilter avfilter_vf_kerndeint = {
|
||||||
.name = "kerndeint",
|
.name = "kerndeint",
|
||||||
@@ -318,5 +317,4 @@ AVFilter avfilter_vf_kerndeint = {
|
|||||||
.outputs = kerndeint_outputs,
|
.outputs = kerndeint_outputs,
|
||||||
|
|
||||||
.priv_class = &kerndeint_class,
|
.priv_class = &kerndeint_class,
|
||||||
.shorthand = shorthand,
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user