X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fvf_libopencv.c;h=7c4b57df454635f038744a30cd5b8a90de5dcc9e;hb=39a8275fdf4f607023b483a58b255600d5f7a9e7;hp=fa1604114c1295df636aa1cad51945b327db8d41;hpb=7c26761b8121ed362870b2e0eb06b85431bdd7a2;p=ffmpeg diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c index fa1604114c1..7c4b57df454 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); }