[FFmpeg-soc] [soc]: r4060 - libavfilter/vf_format.c
stefano
subversion at mplayerhq.hu
Mon Feb 16 22:08:46 CET 2009
Author: stefano
Date: Mon Feb 16 22:08:44 2009
New Revision: 4060
Log:
Fix capitalization of init() error messages.
Modified:
libavfilter/vf_format.c
Modified: libavfilter/vf_format.c
==============================================================================
--- libavfilter/vf_format.c Mon Feb 16 22:06:30 2009 (r4059)
+++ libavfilter/vf_format.c Mon Feb 16 22:08:44 2009 (r4060)
@@ -44,7 +44,7 @@ static av_cold int init(AVFilterContext
else
len = sep - cur;
if(len >= 32) {
- av_log(ctx, AV_LOG_ERROR, "format name too long\n");
+ av_log(ctx, AV_LOG_ERROR, "Format name too long\n");
return -1;
}
@@ -53,7 +53,7 @@ static av_cold int init(AVFilterContext
fmt = avcodec_get_pix_fmt(name);
if(fmt == PIX_FMT_NONE) {
- av_log(ctx, AV_LOG_ERROR, "unknown pixel format\n");
+ av_log(ctx, AV_LOG_ERROR, "Unknown pixel format\n");
return -1;
}
More information about the FFmpeg-soc
mailing list