]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/smartblur: cleanup unused shorthand and doc.
authorClément Bœsch <ubitux@gmail.com>
Thu, 11 Apr 2013 10:01:27 +0000 (12:01 +0200)
committerClément Bœsch <ubitux@gmail.com>
Thu, 11 Apr 2013 10:41:13 +0000 (12:41 +0200)
doc/filters.texi
libavfilter/vf_smartblur.c

index e728e7cd3ea539d7ee08425555b9b0e40973b61c..3d40b4f9d7a28b997be8e79315ea618d801b2e03 100644 (file)
@@ -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
index e8a5f62f737319f68ec65c8e8db9c127ed0d97f2..eb831a624ebe26c3b0d7cd34d18df56c53151683 100644 (file)
@@ -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."),