diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2007-08-10 07:28:18 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-08-10 07:28:18 +0000 |
commit | 1af2ca78594a886a3a859a97059b53d4e6420436 (patch) | |
tree | 4d0e635726a52acfe766d929d7009ff323218225 | |
parent | 63f8165914bc9d7572d2fa5744a46a5f4531fe79 (diff) | |
download | ffmpeg-1af2ca78594a886a3a859a97059b53d4e6420436.tar.gz |
Prefix with "opt_" the functions ffmpeg.c:show_{version,license,formats}.
patch by Stefano Sabatini [stefano tod sabatini-lala £ poste it]
Originally committed as revision 10049 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -80,7 +80,7 @@ typedef struct AVMetaDataMap { extern const OptionDef options[]; static void show_help(void); -static void show_license(void); +static void opt_show_license(void); static int opt_default(const char *opt, const char *arg); #define MAX_FILES 20 @@ -3187,7 +3187,7 @@ static int64_t getutime(void) extern int ffm_nopts; #endif -static void show_formats(void) +static void opt_show_formats(void) { AVInputFormat *ifmt; AVOutputFormat *ofmt; @@ -3536,7 +3536,7 @@ static void opt_audio_bsf(const char *arg) *bsfp= bsfc; } -static void show_version(void) +static void opt_show_version(void) { /* TODO: add function interface to avutil and avformat */ fprintf(stderr, "ffmpeg " FFMPEG_VERSION "\n" @@ -3591,10 +3591,10 @@ static int opt_default(const char *opt, const char *arg){ const OptionDef options[] = { /* main options */ - { "L", 0, {(void*)show_license}, "show license" }, + { "L", 0, {(void*)opt_show_license}, "show license" }, { "h", 0, {(void*)opt_show_help}, "show help" }, - { "version", 0, {(void*)show_version}, "show version" }, - { "formats", 0, {(void*)show_formats}, "show available formats, codecs, protocols, ..." }, + { "version", 0, {(void*)opt_show_version}, "show version" }, + { "formats", 0, {(void*)opt_show_formats}, "show available formats, codecs, protocols, ..." }, { "f", HAS_ARG, {(void*)opt_format}, "force format", "fmt" }, { "i", HAS_ARG, {(void*)opt_input_file}, "input file name", "filename" }, { "y", OPT_BOOL, {(void*)&file_overwrite}, "overwrite output files" }, @@ -3725,7 +3725,7 @@ static void show_banner(void) #endif } -static void show_license(void) +static void opt_show_license(void) { #ifdef CONFIG_GPL printf( |