Browse code

Consistently use Uppercase for the first character of the log messages.

Originally committed as revision 24420 to svn://svn.ffmpeg.org/ffmpeg/trunk

Stefano Sabatini authored on 2010/07/22 18:56:00
Showing 1 changed files
... ...
@@ -37,7 +37,7 @@ static int link_filter(AVFilterContext *src, int srcpad,
37 37
     int ret;
38 38
     if ((ret = avfilter_link(src, srcpad, dst, dstpad))) {
39 39
         av_log(log_ctx, AV_LOG_ERROR,
40
-               "cannot create the link %s:%d -> %s:%d\n",
40
+               "Cannot create the link %s:%d -> %s:%d\n",
41 41
                src->filter->name, srcpad, dst->filter->name, dstpad);
42 42
         return ret;
43 43
     }
... ...
@@ -90,14 +90,14 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
90 90
 
91 91
     if (!filt) {
92 92
         av_log(log_ctx, AV_LOG_ERROR,
93
-               "no such filter: '%s'\n", filt_name);
93
+               "No such filter: '%s'\n", filt_name);
94 94
         return NULL;
95 95
     }
96 96
 
97 97
     filt_ctx = avfilter_open(filt, inst_name);
98 98
     if (!filt_ctx) {
99 99
         av_log(log_ctx, AV_LOG_ERROR,
100
-               "error creating filter '%s'\n", filt_name);
100
+               "Error creating filter '%s'\n", filt_name);
101 101
         return NULL;
102 102
     }
103 103
 
... ...
@@ -114,7 +114,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
114 114
 
115 115
     if (avfilter_init_filter(filt_ctx, args, NULL)) {
116 116
         av_log(log_ctx, AV_LOG_ERROR,
117
-               "error initializing filter '%s' with args '%s'\n", filt_name, args);
117
+               "Error initializing filter '%s' with args '%s'\n", filt_name, args);
118 118
         return NULL;
119 119
     }
120 120