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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-08-03 16:56:31 +0400
committerClément Bœsch <ubitux@gmail.com>2012-08-03 16:58:14 +0400
commite39f6a3a5ca2a51360dac65221bcd5e078b98900 (patch)
tree682bfb7d0988c78672260bc9356213c98195f028 /libavfilter
parent231ffb9243e5286b7c3d5806fa8f3142c72bfe15 (diff)
Fix misc swapped dot and carriage returns in av_log calls.
Diffstat (limited to 'libavfilter')
-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 fa1604114c..7c4b57df45 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);
}