]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_unsharp.c
lavfi: make filters less verbose.
[ffmpeg] / libavfilter / vf_unsharp.c
index 1e9c0ee59f6dcbc5063934a4d5e9c40d07e47e51..ddfbf2cd3cf2365a1f3942a7899cc612bd1b007f 100644 (file)
@@ -177,7 +177,7 @@ static void init_filter_param(AVFilterContext *ctx, FilterParam *fp, const char
 
     effect = fp->amount == 0 ? "none" : fp->amount < 0 ? "blur" : "sharpen";
 
-    av_log(ctx, AV_LOG_INFO, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n",
+    av_log(ctx, AV_LOG_VERBOSE, "effect:%s type:%s msize_x:%d msize_y:%d amount:%0.2f\n",
            effect, effect_type, fp->msize_x, fp->msize_y, fp->amount / 65535.0);
 
     for (z = 0; z < 2 * fp->steps_y; z++)