[FFmpeg-cvslog] avfilter/vf_unsharp: rename config_props -> config_input, link -> inlink

Limin Wang git at videolan.org
Tue Oct 22 00:16:10 EEST 2019


ffmpeg | branch: master | Limin Wang <lance.lmwang at gmail.com> | Mon Oct 14 18:27:04 2019 +0800| [7a477c4b631b03a547c39981da420f7953de6ff1] | committer: Michael Niedermayer

avfilter/vf_unsharp: rename config_props -> config_input, link -> inlink

Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7a477c4b631b03a547c39981da420f7953de6ff1
---

 libavfilter/vf_unsharp.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/libavfilter/vf_unsharp.c b/libavfilter/vf_unsharp.c
index af05833a5d..95b4968d41 100644
--- a/libavfilter/vf_unsharp.c
+++ b/libavfilter/vf_unsharp.c
@@ -230,10 +230,10 @@ static int init_filter_param(AVFilterContext *ctx, UnsharpFilterParam *fp, const
     return 0;
 }
 
-static int config_props(AVFilterLink *link)
+static int config_input(AVFilterLink *inlink)
 {
-    UnsharpContext *s = link->dst->priv;
-    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
+    UnsharpContext *s = inlink->dst->priv;
+    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
     int ret;
 
     s->hsub = desc->log2_chroma_w;
@@ -241,13 +241,13 @@ static int config_props(AVFilterLink *link)
 
     // ensure (height / nb_threads) > 4 * steps_y,
     // so that we don't have too much overlap between two threads
-    s->nb_threads = FFMIN(ff_filter_get_nb_threads(link->dst),
-                          link->h / (4 * s->luma.steps_y));
+    s->nb_threads = FFMIN(ff_filter_get_nb_threads(inlink->dst),
+                          inlink->h / (4 * s->luma.steps_y));
 
-    ret = init_filter_param(link->dst, &s->luma,   "luma",   link->w);
+    ret = init_filter_param(inlink->dst, &s->luma,   "luma",   inlink->w);
     if (ret < 0)
         return ret;
-    ret = init_filter_param(link->dst, &s->chroma, "chroma", AV_CEIL_RSHIFT(link->w, s->hsub));
+    ret = init_filter_param(inlink->dst, &s->chroma, "chroma", AV_CEIL_RSHIFT(inlink->w, s->hsub));
     if (ret < 0)
         return ret;
 
@@ -325,7 +325,7 @@ static const AVFilterPad avfilter_vf_unsharp_inputs[] = {
         .name         = "default",
         .type         = AVMEDIA_TYPE_VIDEO,
         .filter_frame = filter_frame,
-        .config_props = config_props,
+        .config_props = config_input,
     },
     { NULL }
 };



More information about the ffmpeg-cvslog mailing list