summaryrefslogtreecommitdiff
path: root/libavfilter/vf_libopencv.c
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2012-08-04 15:40:35 -0400
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2012-08-04 16:39:27 -0400
commit8b8750e0612f0bc30fafbb767f7931158868971d (patch)
tree58c055157b418074159c4bf27e2f181eb41b3393 /libavfilter/vf_libopencv.c
parent616fd4fe5e2985f31e2ae1aee0558e73390437a0 (diff)
cosmetics: Fix a few switched periods and linebreaks
Based on a patch by Piotr Bandurski. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavfilter/vf_libopencv.c')
-rw-r--r--libavfilter/vf_libopencv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c
index e60caf2bc3..ea6ebe1b16 100644
--- a/libavfilter/vf_libopencv.c
+++ b/libavfilter/vf_libopencv.c
@@ -106,7 +106,7 @@ static av_cold int smooth_init(AVFilterContext *ctx, const char *args)
else if (!strcmp(type_str, "gaussian" )) smooth->type = CV_GAUSSIAN;
else if (!strcmp(type_str, "bilateral" )) smooth->type = CV_BILATERAL;
else {
- av_log(ctx, AV_LOG_ERROR, "Smoothing type '%s' unknown\n.", type_str);
+ av_log(ctx, AV_LOG_ERROR, "Smoothing type '%s' unknown.\n", type_str);
return AVERROR(EINVAL);
}
@@ -220,7 +220,7 @@ static int parse_iplconvkernel(IplConvKernel **kernel, char *buf, void *log_ctx)
return ret;
} else {
av_log(log_ctx, AV_LOG_ERROR,
- "Shape unspecified or type '%s' unknown\n.", shape_str);
+ "Shape unspecified or type '%s' unknown.\n", shape_str);
return AVERROR(EINVAL);
}