[FFmpeg-cvslog] Lowercase all ff* program names.

Diego Biurrun git at videolan.org
Sun Apr 24 03:50:10 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sat Apr 23 15:19:17 2011 +0200| [89b503b55f2b2713f1c3cc8981102c1a7b663281] | committer: Diego Biurrun

Lowercase all ff* program names.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=89b503b55f2b2713f1c3cc8981102c1a7b663281
---

 doc/ffmpeg.texi   |    6 +++---
 doc/ffplay.texi   |    4 ++--
 doc/ffprobe.texi  |    6 +++---
 doc/ffserver.texi |    6 +++---
 ffmpeg.c          |    4 ++--
 ffplay.c          |    4 ++--
 ffprobe.c         |    4 ++--
 ffserver.c        |    2 +-
 8 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
index 62282b2..0d12f65 100644
--- a/doc/ffmpeg.texi
+++ b/doc/ffmpeg.texi
@@ -1,8 +1,8 @@
 \input texinfo @c -*- texinfo -*-
 
- at settitle FFmpeg Documentation
+ at settitle ffmpeg Documentation
 @titlepage
- at center @titlefont{FFmpeg Documentation}
+ at center @titlefont{ffmpeg Documentation}
 @end titlepage
 
 @top
@@ -1046,7 +1046,7 @@ file to which you want to add them.
 @ignore
 
 @setfilename ffmpeg
- at settitle FFmpeg video converter
+ at settitle ffmpeg video converter
 
 @c man begin SEEALSO
 ffplay(1), ffprobe(1), ffserver(1) and the Libav HTML documentation
diff --git a/doc/ffplay.texi b/doc/ffplay.texi
index 6199e6d..e5de3d2 100644
--- a/doc/ffplay.texi
+++ b/doc/ffplay.texi
@@ -1,8 +1,8 @@
 \input texinfo @c -*- texinfo -*-
 
- at settitle FFplay Documentation
+ at settitle ffplay Documentation
 @titlepage
- at center @titlefont{FFplay Documentation}
+ at center @titlefont{ffplay Documentation}
 @end titlepage
 
 @top
diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi
index 1509022..5e856e6 100644
--- a/doc/ffprobe.texi
+++ b/doc/ffprobe.texi
@@ -1,8 +1,8 @@
 \input texinfo @c -*- texinfo -*-
 
- at settitle FFprobe Documentation
+ at settitle ffprobe Documentation
 @titlepage
- at center @titlefont{FFprobe Documentation}
+ at center @titlefont{ffprobe Documentation}
 @end titlepage
 
 @top
@@ -119,7 +119,7 @@ with name "STREAM".
 @ignore
 
 @setfilename ffprobe
- at settitle FFprobe media prober
+ at settitle ffprobe media prober
 
 @c man begin SEEALSO
 ffmpeg(1), ffplay(1), ffserver(1) and the Libav HTML documentation
diff --git a/doc/ffserver.texi b/doc/ffserver.texi
index e5c9d40..d247016 100644
--- a/doc/ffserver.texi
+++ b/doc/ffserver.texi
@@ -1,8 +1,8 @@
 \input texinfo @c -*- texinfo -*-
 
- at settitle FFserver Documentation
+ at settitle ffserver Documentation
 @titlepage
- at center @titlefont{FFserver Documentation}
+ at center @titlefont{ffserver Documentation}
 @end titlepage
 
 @top
@@ -261,7 +261,7 @@ rather than as a daemon.
 @ignore
 
 @setfilename ffserver
- at settitle FFserver video server
+ at settitle ffserver video server
 
 @c man begin SEEALSO
 
diff --git a/ffmpeg.c b/ffmpeg.c
index 886d5da..d54785d 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1,5 +1,5 @@
 /*
- * FFmpeg main
+ * ffmpeg main
  * Copyright (c) 2000-2003 Fabrice Bellard
  *
  * This file is part of Libav.
@@ -78,7 +78,7 @@
 
 #include "libavutil/avassert.h"
 
-const char program_name[] = "FFmpeg";
+const char program_name[] = "ffmpeg";
 const int program_birth_year = 2000;
 
 /* select an input stream for an output stream */
diff --git a/ffplay.c b/ffplay.c
index 766d5ca..18010ef 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1,5 +1,5 @@
 /*
- * FFplay : Simple Media Player based on the Libav libraries
+ * ffplay : Simple Media Player based on the Libav libraries
  * Copyright (c) 2003 Fabrice Bellard
  *
  * This file is part of Libav.
@@ -55,7 +55,7 @@
 #include <unistd.h>
 #include <assert.h>
 
-const char program_name[] = "FFplay";
+const char program_name[] = "ffplay";
 const int program_birth_year = 2003;
 
 //#define DEBUG
diff --git a/ffprobe.c b/ffprobe.c
index cc3699b..6e26c11 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -1,5 +1,5 @@
 /*
- * FFprobe : Simple Media Prober based on the Libav libraries
+ * ffprobe : Simple Media Prober based on the Libav libraries
  * Copyright (c) 2007-2010 Stefano Sabatini
  *
  * This file is part of Libav.
@@ -28,7 +28,7 @@
 #include "libavdevice/avdevice.h"
 #include "cmdutils.h"
 
-const char program_name[] = "FFprobe";
+const char program_name[] = "ffprobe";
 const int program_birth_year = 2007;
 
 static int do_show_format  = 0;
diff --git a/ffserver.c b/ffserver.c
index 9cb65da..829eb2e 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -59,7 +59,7 @@
 
 #include "cmdutils.h"
 
-const char program_name[] = "FFserver";
+const char program_name[] = "ffserver";
 const int program_birth_year = 2000;
 
 static const OptionDef options[];



More information about the ffmpeg-cvslog mailing list