]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_smartblur.c
Merge commit '28bc406c84b04a5f1458b90ff52ddbec73e46202'
[ffmpeg] / libavfilter / vf_smartblur.c
index e8a5f62f737319f68ec65c8e8db9c127ed0d97f2..aed3fa6e83b115af2eeba19e5551bba5c5b8ed5c 100644 (file)
@@ -82,7 +82,7 @@ static const AVOption smartblur_options[] = {
 
 AVFILTER_DEFINE_CLASS(smartblur);
 
-static av_cold int init(AVFilterContext *ctx, const char *args)
+static av_cold int init(AVFilterContext *ctx)
 {
     SmartblurContext *sblur = ctx->priv;
 
@@ -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."),