summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-22 09:56:00 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-22 09:56:00 +0000
commitbb90d855d7df6661669fa20bc553b12cc2d557d6 (patch)
treea75365f4aaa4e456f6489ea6f99e5f4d8bdd9e39 /libavfilter
parent99ac59ca69039cd28701c46e7e896f2d05bb5528 (diff)
Consistently use Uppercase for the first character of the log
messages. Originally committed as revision 24420 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/graphparser.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 7cf320f76a..59243cda5b 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -37,7 +37,7 @@ static int link_filter(AVFilterContext *src, int srcpad,
int ret;
if ((ret = avfilter_link(src, srcpad, dst, dstpad))) {
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);
return ret;
}
@@ -90,14 +90,14 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
if (!filt) {
av_log(log_ctx, AV_LOG_ERROR,
- "no such filter: '%s'\n", filt_name);
+ "No such filter: '%s'\n", filt_name);
return NULL;
}
filt_ctx = avfilter_open(filt, inst_name);
if (!filt_ctx) {
av_log(log_ctx, AV_LOG_ERROR,
- "error creating filter '%s'\n", filt_name);
+ "Error creating filter '%s'\n", filt_name);
return NULL;
}
@@ -114,7 +114,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
if (avfilter_init_filter(filt_ctx, args, NULL)) {
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;
}