[FFmpeg-cvslog] Fix misc swapped dot and carriage returns in av_log calls.
Clément Bœsch
git at videolan.org
Fri Aug 3 14:59:04 CEST 2012
ffmpeg | branch: master | Clément Bœsch <clement.boesch at smartjog.com> | Fri Aug 3 14:56:31 2012 +0200| [e39f6a3a5ca2a51360dac65221bcd5e078b98900] | committer: Clément Bœsch
Fix misc swapped dot and carriage returns in av_log calls.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e39f6a3a5ca2a51360dac65221bcd5e078b98900
---
libavcodec/crystalhd.c | 2 +-
libavfilter/vf_libopencv.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c
index aaa2add..47439ae 100644
--- a/libavcodec/crystalhd.c
+++ b/libavcodec/crystalhd.c
@@ -927,7 +927,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *a
av_log(avctx, AV_LOG_WARNING,
"CrystalHD: Failed to parse h.264 packet "
"completely. Interlaced frames may be "
- "incorrectly detected\n.");
+ "incorrectly detected.\n");
} else {
av_log(avctx, AV_LOG_VERBOSE,
"CrystalHD: parser picture type %d\n",
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);
}
More information about the ffmpeg-cvslog
mailing list