diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 12:01:27 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 12:41:13 +0200 |
commit | 4c9b031559c6bd8a02ba12441476260323e84e0a (patch) | |
tree | 3ba2498ff6bac8db980b9a2c7b063dce520a0a06 | |
parent | fcaea2170f0771911620dfb11b64ae0d1970c71f (diff) | |
download | ffmpeg-4c9b031559c6bd8a02ba12441476260323e84e0a.tar.gz |
lavfi/smartblur: cleanup unused shorthand and doc.
-rw-r--r-- | doc/filters.texi | 2 | ||||
-rw-r--r-- | libavfilter/vf_smartblur.c | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index e728e7cd3e..3d40b4f9d7 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -5143,7 +5143,7 @@ expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]" Blur the input video without impacting the outlines. -A description of the accepted options follows. +The filter accepts the following options: @table @option @item luma_radius, lr diff --git a/libavfilter/vf_smartblur.c b/libavfilter/vf_smartblur.c index e8a5f62f73..eb831a624e 100644 --- a/libavfilter/vf_smartblur.c +++ b/libavfilter/vf_smartblur.c @@ -289,12 +289,6 @@ static const AVFilterPad smartblur_outputs[] = { { NULL } }; -static const char *const shorthand[] = { - "luma_radius", "luma_strength", "luma_threshold", - "chroma_radius", "chroma_strength", "chroma_threshold", - NULL -}; - AVFilter avfilter_vf_smartblur = { .name = "smartblur", .description = NULL_IF_CONFIG_SMALL("Blur the input video without impacting the outlines."), |