[FFmpeg-cvslog] r11070 - trunk/vhook/drawtext.c
diego
subversion
Tue Nov 20 14:42:43 CET 2007
Author: diego
Date: Tue Nov 20 14:42:43 2007
New Revision: 11070
Log:
Fix wrong error message.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Modified:
trunk/vhook/drawtext.c
Modified: trunk/vhook/drawtext.c
==============================================================================
--- trunk/vhook/drawtext.c (original)
+++ trunk/vhook/drawtext.c Tue Nov 20 14:42:43 2007
@@ -203,7 +203,7 @@ int Configure(void **ctxp, int argc, cha
case 'C':
if (ParseColor(optarg, ci->bgcolor) == -1)
{
- av_log(NULL, AV_LOG_ERROR, "Invalid foreground color: '%s'. You must specify the color in the internet way(packaged hex): #RRGGBB, ie: -c #ffffff (for white foreground)\n", optarg);
+ av_log(NULL, AV_LOG_ERROR, "Invalid background color: '%s'. You must specify the color in the internet way(packaged hex): #RRGGBB, ie: -C #ffffff (for white background)\n", optarg);
return -1;
}
break;
More information about the ffmpeg-cvslog
mailing list