Browse Source

lavfi/field: switch to AVOption-based system

Also remove mention to syntax explanation which is or will be redundant
and possibly confusing.
tags/n2.0
Stefano Sabatini 13 years ago
parent
commit
2040b428b4
3 changed files with 1 additions and 12 deletions
  1. +0
    -11
      doc/filters.texi
  2. +1
    -0
      libavfilter/avfilter.c
  3. +0
    -1
      libavfilter/vf_field.c

+ 0
- 11
doc/filters.texi View File

@@ -3112,17 +3112,6 @@ Specify whether to extract the top (if the value is @code{0} or
@code{bottom}).
@end table

If the option key is not specified, the first value sets the @var{type}
option. For example:
@example
field=bottom
@end example

is equivalent to:
@example
field=type=bottom
@end example

@section fieldorder

Transform the field order of the input video.


+ 1
- 0
libavfilter/avfilter.c View File

@@ -670,6 +670,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
!strcmp(filter->filter->name, "ebur128" ) ||
!strcmp(filter->filter->name, "edgedetect") ||
!strcmp(filter->filter->name, "fade" ) ||
!strcmp(filter->filter->name, "field" ) ||
!strcmp(filter->filter->name, "fieldorder") ||
!strcmp(filter->filter->name, "fps" ) ||
!strcmp(filter->filter->name, "frei0r" ) ||


+ 0
- 1
libavfilter/vf_field.c View File

@@ -117,5 +117,4 @@ AVFilter avfilter_vf_field = {
.inputs = field_inputs,
.outputs = field_outputs,
.priv_class = &field_class,
.shorthand = shorthand,
};

Loading…
Cancel
Save