Commit bb90d855 authored by Stefano Sabatini's avatar Stefano Sabatini

Consistently use Uppercase for the first character of the log

messages.

Originally committed as revision 24420 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 99ac59ca
...@@ -37,7 +37,7 @@ static int link_filter(AVFilterContext *src, int srcpad, ...@@ -37,7 +37,7 @@ static int link_filter(AVFilterContext *src, int srcpad,
int ret; int ret;
if ((ret = avfilter_link(src, srcpad, dst, dstpad))) { if ((ret = avfilter_link(src, srcpad, dst, dstpad))) {
av_log(log_ctx, AV_LOG_ERROR, av_log(log_ctx, AV_LOG_ERROR,
"cannot create the link %s:%d -> %s:%d\n", "Cannot create the link %s:%d -> %s:%d\n",
src->filter->name, srcpad, dst->filter->name, dstpad); src->filter->name, srcpad, dst->filter->name, dstpad);
return ret; return ret;
} }
...@@ -90,14 +90,14 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index, ...@@ -90,14 +90,14 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
if (!filt) { if (!filt) {
av_log(log_ctx, AV_LOG_ERROR, av_log(log_ctx, AV_LOG_ERROR,
"no such filter: '%s'\n", filt_name); "No such filter: '%s'\n", filt_name);
return NULL; return NULL;
} }
filt_ctx = avfilter_open(filt, inst_name); filt_ctx = avfilter_open(filt, inst_name);
if (!filt_ctx) { if (!filt_ctx) {
av_log(log_ctx, AV_LOG_ERROR, av_log(log_ctx, AV_LOG_ERROR,
"error creating filter '%s'\n", filt_name); "Error creating filter '%s'\n", filt_name);
return NULL; return NULL;
} }
...@@ -114,7 +114,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index, ...@@ -114,7 +114,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
if (avfilter_init_filter(filt_ctx, args, NULL)) { if (avfilter_init_filter(filt_ctx, args, NULL)) {
av_log(log_ctx, AV_LOG_ERROR, av_log(log_ctx, AV_LOG_ERROR,
"error initializing filter '%s' with args '%s'\n", filt_name, args); "Error initializing filter '%s' with args '%s'\n", filt_name, args);
return NULL; return NULL;
} }
......
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