mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-20 14:16:17 +08:00
Fix wrong error message.
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 11070 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:

committed by
Diego Biurrun

parent
e5af4a113b
commit
79815f622d
@ -203,7 +203,7 @@ int Configure(void **ctxp, int argc, char *argv[])
|
|||||||
case 'C':
|
case 'C':
|
||||||
if (ParseColor(optarg, ci->bgcolor) == -1)
|
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;
|
return -1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user