Lowercase all ff* program names.
This commit is contained in:
parent
3a50894eaa
commit
89b503b55f
@ -1,8 +1,8 @@
|
|||||||
\input texinfo @c -*- texinfo -*-
|
\input texinfo @c -*- texinfo -*-
|
||||||
|
|
||||||
@settitle FFmpeg Documentation
|
@settitle ffmpeg Documentation
|
||||||
@titlepage
|
@titlepage
|
||||||
@center @titlefont{FFmpeg Documentation}
|
@center @titlefont{ffmpeg Documentation}
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@top
|
@top
|
||||||
@ -1046,7 +1046,7 @@ file to which you want to add them.
|
|||||||
@ignore
|
@ignore
|
||||||
|
|
||||||
@setfilename ffmpeg
|
@setfilename ffmpeg
|
||||||
@settitle FFmpeg video converter
|
@settitle ffmpeg video converter
|
||||||
|
|
||||||
@c man begin SEEALSO
|
@c man begin SEEALSO
|
||||||
ffplay(1), ffprobe(1), ffserver(1) and the Libav HTML documentation
|
ffplay(1), ffprobe(1), ffserver(1) and the Libav HTML documentation
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
\input texinfo @c -*- texinfo -*-
|
\input texinfo @c -*- texinfo -*-
|
||||||
|
|
||||||
@settitle FFplay Documentation
|
@settitle ffplay Documentation
|
||||||
@titlepage
|
@titlepage
|
||||||
@center @titlefont{FFplay Documentation}
|
@center @titlefont{ffplay Documentation}
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@top
|
@top
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
\input texinfo @c -*- texinfo -*-
|
\input texinfo @c -*- texinfo -*-
|
||||||
|
|
||||||
@settitle FFprobe Documentation
|
@settitle ffprobe Documentation
|
||||||
@titlepage
|
@titlepage
|
||||||
@center @titlefont{FFprobe Documentation}
|
@center @titlefont{ffprobe Documentation}
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@top
|
@top
|
||||||
@ -119,7 +119,7 @@ with name "STREAM".
|
|||||||
@ignore
|
@ignore
|
||||||
|
|
||||||
@setfilename ffprobe
|
@setfilename ffprobe
|
||||||
@settitle FFprobe media prober
|
@settitle ffprobe media prober
|
||||||
|
|
||||||
@c man begin SEEALSO
|
@c man begin SEEALSO
|
||||||
ffmpeg(1), ffplay(1), ffserver(1) and the Libav HTML documentation
|
ffmpeg(1), ffplay(1), ffserver(1) and the Libav HTML documentation
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
\input texinfo @c -*- texinfo -*-
|
\input texinfo @c -*- texinfo -*-
|
||||||
|
|
||||||
@settitle FFserver Documentation
|
@settitle ffserver Documentation
|
||||||
@titlepage
|
@titlepage
|
||||||
@center @titlefont{FFserver Documentation}
|
@center @titlefont{ffserver Documentation}
|
||||||
@end titlepage
|
@end titlepage
|
||||||
|
|
||||||
@top
|
@top
|
||||||
@ -261,7 +261,7 @@ rather than as a daemon.
|
|||||||
@ignore
|
@ignore
|
||||||
|
|
||||||
@setfilename ffserver
|
@setfilename ffserver
|
||||||
@settitle FFserver video server
|
@settitle ffserver video server
|
||||||
|
|
||||||
@c man begin SEEALSO
|
@c man begin SEEALSO
|
||||||
|
|
||||||
|
4
ffmpeg.c
4
ffmpeg.c
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* FFmpeg main
|
* ffmpeg main
|
||||||
* Copyright (c) 2000-2003 Fabrice Bellard
|
* Copyright (c) 2000-2003 Fabrice Bellard
|
||||||
*
|
*
|
||||||
* This file is part of Libav.
|
* This file is part of Libav.
|
||||||
@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
#include "libavutil/avassert.h"
|
#include "libavutil/avassert.h"
|
||||||
|
|
||||||
const char program_name[] = "FFmpeg";
|
const char program_name[] = "ffmpeg";
|
||||||
const int program_birth_year = 2000;
|
const int program_birth_year = 2000;
|
||||||
|
|
||||||
/* select an input stream for an output stream */
|
/* select an input stream for an output stream */
|
||||||
|
4
ffplay.c
4
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
|
* Copyright (c) 2003 Fabrice Bellard
|
||||||
*
|
*
|
||||||
* This file is part of Libav.
|
* This file is part of Libav.
|
||||||
@ -55,7 +55,7 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
const char program_name[] = "FFplay";
|
const char program_name[] = "ffplay";
|
||||||
const int program_birth_year = 2003;
|
const int program_birth_year = 2003;
|
||||||
|
|
||||||
//#define DEBUG
|
//#define DEBUG
|
||||||
|
@ -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
|
* Copyright (c) 2007-2010 Stefano Sabatini
|
||||||
*
|
*
|
||||||
* This file is part of Libav.
|
* This file is part of Libav.
|
||||||
@ -28,7 +28,7 @@
|
|||||||
#include "libavdevice/avdevice.h"
|
#include "libavdevice/avdevice.h"
|
||||||
#include "cmdutils.h"
|
#include "cmdutils.h"
|
||||||
|
|
||||||
const char program_name[] = "FFprobe";
|
const char program_name[] = "ffprobe";
|
||||||
const int program_birth_year = 2007;
|
const int program_birth_year = 2007;
|
||||||
|
|
||||||
static int do_show_format = 0;
|
static int do_show_format = 0;
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
#include "cmdutils.h"
|
#include "cmdutils.h"
|
||||||
|
|
||||||
const char program_name[] = "FFserver";
|
const char program_name[] = "ffserver";
|
||||||
const int program_birth_year = 2000;
|
const int program_birth_year = 2000;
|
||||||
|
|
||||||
static const OptionDef options[];
|
static const OptionDef options[];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user