Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-04-11 02:03:47 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-04-11 02:04:27 +0400
commit8695d9de4704aa328b6dd0e9826c04da44d04046 (patch)
tree777bd4fe8b6406b46913d32e47aa18c54a7ff794 /libavfilter/vf_smartblur.c
parent2ffee3ec14e74a5472526e58bd9f74c59cd0ef2a (diff)
lavfi/smarblur: add missing newline at end of verbose message
Diffstat (limited to 'libavfilter/vf_smartblur.c')
-rw-r--r--libavfilter/vf_smartblur.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_smartblur.c b/libavfilter/vf_smartblur.c
index 9832e7ed16..e8a5f62f73 100644
--- a/libavfilter/vf_smartblur.c
+++ b/libavfilter/vf_smartblur.c
@@ -99,7 +99,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
av_log(ctx, AV_LOG_VERBOSE,
"luma_radius:%f luma_strength:%f luma_threshold:%d "
- "chroma_radius:%f chroma_strength:%f chroma_threshold:%d ",
+ "chroma_radius:%f chroma_strength:%f chroma_threshold:%d\n",
sblur->luma.radius, sblur->luma.strength, sblur->luma.threshold,
sblur->chroma.radius, sblur->chroma.strength, sblur->chroma.threshold);