diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-25 06:31:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-26 19:08:13 +0200 |
commit | 1a49a169eb74a978eb7b2a4f2caf3520b7741ee5 (patch) | |
tree | 0551783202e47b75d0afe2cac6353a80a7b42e75 /libavfilter/vf_transpose.c | |
parent | ce0a975689068f2fe70f43797ca6e8b4f6b52a4c (diff) | |
download | ffmpeg-1a49a169eb74a978eb7b2a4f2caf3520b7741ee5.tar.gz |
lavfi: make filters less verbose.
Diffstat (limited to 'libavfilter/vf_transpose.c')
-rw-r--r-- | libavfilter/vf_transpose.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_transpose.c b/libavfilter/vf_transpose.c index 7f8e025be0..f78244e6bd 100644 --- a/libavfilter/vf_transpose.c +++ b/libavfilter/vf_transpose.c @@ -110,7 +110,7 @@ static int config_props_output(AVFilterLink *outlink) } else outlink->sample_aspect_ratio = inlink->sample_aspect_ratio; - av_log(ctx, AV_LOG_INFO, "w:%d h:%d dir:%d -> w:%d h:%d rotation:%s vflip:%d\n", + av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d dir:%d -> w:%d h:%d rotation:%s vflip:%d\n", inlink->w, inlink->h, trans->dir, outlink->w, outlink->h, trans->dir == 1 || trans->dir == 3 ? "clockwise" : "counterclockwise", trans->dir == 0 || trans->dir == 3); |