Commit 8b8750e0 authored by Derek Buitenhuis's avatar Derek Buitenhuis

cosmetics: Fix a few switched periods and linebreaks

Based on a patch by Piotr Bandurski.
Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parent 616fd4fe
...@@ -225,7 +225,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data, ...@@ -225,7 +225,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
break; break;
default: default:
av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d\n.", coding_type); av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d.\n", coding_type);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
......
...@@ -106,7 +106,7 @@ static av_cold int smooth_init(AVFilterContext *ctx, const char *args) ...@@ -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, "gaussian" )) smooth->type = CV_GAUSSIAN;
else if (!strcmp(type_str, "bilateral" )) smooth->type = CV_BILATERAL; else if (!strcmp(type_str, "bilateral" )) smooth->type = CV_BILATERAL;
else { 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); return AVERROR(EINVAL);
} }
...@@ -220,7 +220,7 @@ static int parse_iplconvkernel(IplConvKernel **kernel, char *buf, void *log_ctx) ...@@ -220,7 +220,7 @@ static int parse_iplconvkernel(IplConvKernel **kernel, char *buf, void *log_ctx)
return ret; return ret;
} else { } else {
av_log(log_ctx, AV_LOG_ERROR, 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); return AVERROR(EINVAL);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment