summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_libopencv.c
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-08-03 14:56:31 +0200
committerClément Bœsch <ubitux@gmail.com>2012-08-03 14:58:14 +0200
commite39f6a3a5ca2a51360dac65221bcd5e078b98900 (patch)
tree682bfb7d0988c78672260bc9356213c98195f028 /libavfilter/vf_libopencv.c
parent231ffb9243e5286b7c3d5806fa8f3142c72bfe15 (diff)
downloadffmpeg-streaming-e39f6a3a5ca2a51360dac65221bcd5e078b98900.zip
ffmpeg-streaming-e39f6a3a5ca2a51360dac65221bcd5e078b98900.tar.gz
Fix misc swapped dot and carriage returns in av_log calls.
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 fa16041..7c4b57d 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);
}
OpenPOWER on IntegriCloud