2 * Various utilities for command line tools
3 * Copyright (c) 2000-2003 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
37 double parse_number_or_die(const char *context
, const char *numstr
, int type
, double min
, double max
)
41 double d
= strtod(numstr
, &tail
);
43 error
= "Expected number for %s but found: %s\n";
44 else if (d
< min
|| d
> max
)
45 error
= "The value for %s was %s which is not within %f - %f\n";
46 else if(type
== OPT_INT64
&& (int64_t)d
!= d
)
47 error
= "Expected int64 for %s but found %s\n";
50 fprintf(stderr
, error
, context
, numstr
, min
, max
);
54 void show_help_options(const OptionDef
*options
, const char *msg
, int mask
, int value
)
60 for(po
= options
; po
->name
!= NULL
; po
++) {
62 if ((po
->flags
& mask
) == value
) {
67 av_strlcpy(buf
, po
->name
, sizeof(buf
));
68 if (po
->flags
& HAS_ARG
) {
69 av_strlcat(buf
, " ", sizeof(buf
));
70 av_strlcat(buf
, po
->argname
, sizeof(buf
));
72 printf("-%-17s %s\n", buf
, po
->help
);
77 static const OptionDef
* find_option(const OptionDef
*po
, const char *name
){
78 while (po
->name
!= NULL
) {
79 if (!strcmp(name
, po
->name
))
86 void parse_options(int argc
, char **argv
, const OptionDef
*options
,
87 void (* parse_arg_function
)(const char*))
89 const char *opt
, *arg
;
90 int optindex
, handleoptions
=1;
95 while (optindex
< argc
) {
96 opt
= argv
[optindex
++];
98 if (handleoptions
&& opt
[0] == '-' && opt
[1] != '\0') {
99 if (opt
[1] == '-' && opt
[2] == '\0') {
103 po
= find_option(options
, opt
+ 1);
105 po
= find_option(options
, "default");
108 fprintf(stderr
, "%s: unrecognized option '%s'\n", argv
[0], opt
);
112 if (po
->flags
& HAS_ARG
) {
113 arg
= argv
[optindex
++];
115 fprintf(stderr
, "%s: missing argument for option '%s'\n", argv
[0], opt
);
119 if (po
->flags
& OPT_STRING
) {
121 str
= av_strdup(arg
);
122 *po
->u
.str_arg
= str
;
123 } else if (po
->flags
& OPT_BOOL
) {
125 } else if (po
->flags
& OPT_INT
) {
126 *po
->u
.int_arg
= parse_number_or_die(opt
+1, arg
, OPT_INT64
, INT_MIN
, INT_MAX
);
127 } else if (po
->flags
& OPT_INT64
) {
128 *po
->u
.int64_arg
= parse_number_or_die(opt
+1, arg
, OPT_INT64
, INT64_MIN
, INT64_MAX
);
129 } else if (po
->flags
& OPT_FLOAT
) {
130 *po
->u
.float_arg
= parse_number_or_die(opt
+1, arg
, OPT_FLOAT
, -INFINITY
, INFINITY
);
131 } else if (po
->flags
& OPT_FUNC2
) {
132 if(po
->u
.func2_arg(opt
+1, arg
)<0)
138 if (parse_arg_function
)
139 parse_arg_function(opt
);
144 void print_error(const char *filename
, int err
)
147 case AVERROR_NUMEXPECTED
:
148 fprintf(stderr
, "%s: Incorrect image filename syntax.\n"
149 "Use '%%d' to specify the image number:\n"
150 " for img1.jpg, img2.jpg, ..., use 'img%%d.jpg';\n"
151 " for img001.jpg, img002.jpg, ..., use 'img%%03d.jpg'.\n",
154 case AVERROR_INVALIDDATA
:
155 fprintf(stderr
, "%s: Error while parsing header\n", filename
);
158 fprintf(stderr
, "%s: Unknown format\n", filename
);
161 fprintf(stderr
, "%s: I/O error occured\n"
162 "Usually that means that input file is truncated and/or corrupted.\n",
165 case AVERROR(ENOMEM
):
166 fprintf(stderr
, "%s: memory allocation error occured\n", filename
);
168 case AVERROR(ENOENT
):
169 fprintf(stderr
, "%s: no such file or directory\n", filename
);
172 fprintf(stderr
, "%s: Error while opening file\n", filename
);
177 void show_banner(const char *program_name
, int program_birth_year
)
179 fprintf(stderr
, "%s version " FFMPEG_VERSION
", Copyright (c) %d-2008 Fabrice Bellard, et al.\n",
180 program_name
, program_birth_year
);
181 fprintf(stderr
, " configuration: " FFMPEG_CONFIGURATION
"\n");
182 fprintf(stderr
, " libavutil version: " AV_STRINGIFY(LIBAVUTIL_VERSION
) "\n");
183 fprintf(stderr
, " libavcodec version: " AV_STRINGIFY(LIBAVCODEC_VERSION
) "\n");
184 fprintf(stderr
, " libavformat version: " AV_STRINGIFY(LIBAVFORMAT_VERSION
) "\n");
185 fprintf(stderr
, " libavdevice version: " AV_STRINGIFY(LIBAVDEVICE_VERSION
) "\n");
186 fprintf(stderr
, " built on " __DATE__
" " __TIME__
);
188 fprintf(stderr
, ", gcc: " __VERSION__
"\n");
190 fprintf(stderr
, ", using a non-gcc compiler\n");
194 void show_version(const char *program_name
) {
195 /* TODO: add function interface to avutil and avformat avdevice*/
196 printf("%s " FFMPEG_VERSION
"\n", program_name
);
197 printf("libavutil %d\n"
201 LIBAVUTIL_BUILD
, avcodec_build(), LIBAVFORMAT_BUILD
, LIBAVDEVICE_BUILD
);
204 void show_license(void)
206 #ifdef CONFIG_NONFREE
208 "This version of FFmpeg has nonfree parts compiled in.\n"
209 "Therefore it is not legally redistributable.\n"
213 "FFmpeg is free software; you can redistribute it and/or modify\n"
214 "it under the terms of the GNU General Public License as published by\n"
215 "the Free Software Foundation; either version 2 of the License, or\n"
216 "(at your option) any later version.\n"
218 "FFmpeg is distributed in the hope that it will be useful,\n"
219 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
220 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
221 "GNU General Public License for more details.\n"
223 "You should have received a copy of the GNU General Public License\n"
224 "along with FFmpeg; if not, write to the Free Software\n"
225 "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
229 "FFmpeg is free software; you can redistribute it and/or\n"
230 "modify it under the terms of the GNU Lesser General Public\n"
231 "License as published by the Free Software Foundation; either\n"
232 "version 2.1 of the License, or (at your option) any later version.\n"
234 "FFmpeg is distributed in the hope that it will be useful,\n"
235 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
236 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
237 "Lesser General Public License for more details.\n"
239 "You should have received a copy of the GNU Lesser General Public\n"
240 "License along with FFmpeg; if not, write to the Free Software\n"
241 "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"