diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-11 00:14:06 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-11 00:16:25 +0200 |
commit | 2040b428b45fa4f0167acc40a49771f92cd96769 (patch) | |
tree | 355f62af68a5462782e29cd6b7579068fab14a90 /libavfilter | |
parent | 6a2fb5b90cb77bbcd33102b6cfa76a786152c1c3 (diff) | |
download | ffmpeg-2040b428b45fa4f0167acc40a49771f92cd96769.tar.gz |
lavfi/field: switch to AVOption-based system
Also remove mention to syntax explanation which is or will be redundant
and possibly confusing.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 1 | ||||
-rw-r--r-- | libavfilter/vf_field.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 71d5e9cc4e..753567fe81 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -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" ) || diff --git a/libavfilter/vf_field.c b/libavfilter/vf_field.c index eb8680df9e..c113512b74 100644 --- a/libavfilter/vf_field.c +++ b/libavfilter/vf_field.c @@ -117,5 +117,4 @@ AVFilter avfilter_vf_field = { .inputs = field_inputs, .outputs = field_outputs, .priv_class = &field_class, - .shorthand = shorthand, }; |