mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fix misc swapped dot and carriage returns in av_log calls.
This commit is contained in:
parent
231ffb9243
commit
e39f6a3a5c
@ -927,7 +927,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *a
|
|||||||
av_log(avctx, AV_LOG_WARNING,
|
av_log(avctx, AV_LOG_WARNING,
|
||||||
"CrystalHD: Failed to parse h.264 packet "
|
"CrystalHD: Failed to parse h.264 packet "
|
||||||
"completely. Interlaced frames may be "
|
"completely. Interlaced frames may be "
|
||||||
"incorrectly detected\n.");
|
"incorrectly detected.\n");
|
||||||
} else {
|
} else {
|
||||||
av_log(avctx, AV_LOG_VERBOSE,
|
av_log(avctx, AV_LOG_VERBOSE,
|
||||||
"CrystalHD: parser picture type %d\n",
|
"CrystalHD: parser picture type %d\n",
|
||||||
|
@ -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)
|
|||||||
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user