diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-02-09 10:35:36 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-02-09 10:37:42 +0100 |
commit | 8e027ca81760bb94c7404d0d9c0e0ca82f5a9107 (patch) | |
tree | f2b21de8fa13216c7d8c258827cecba85a0628df /libavfilter | |
parent | a00ff56321b8504150095d4dfc71227ac77f7e8f (diff) | |
download | ffmpeg-8e027ca81760bb94c7404d0d9c0e0ca82f5a9107.tar.gz |
avfilter/vf_zscale: switch verbose log to trace
Not needed in verbose mode.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_zscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_zscale.c b/libavfilter/vf_zscale.c index 8059061827..57199a0878 100644 --- a/libavfilter/vf_zscale.c +++ b/libavfilter/vf_zscale.c @@ -301,7 +301,7 @@ static int config_props(AVFilterLink *outlink) } else outlink->sample_aspect_ratio = inlink->sample_aspect_ratio; - av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d fmt:%s sar:%d/%d\n", + av_log(ctx, AV_LOG_TRACE, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d fmt:%s sar:%d/%d\n", inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format), inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den, outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format), |