cmdutils.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /*
  2. * Various utilities for command line tools
  3. * Copyright (c) 2000-2003 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  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.
  11. *
  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.
  16. *
  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
  20. */
  21. #include <string.h>
  22. #include <stdlib.h>
  23. #include <errno.h>
  24. #include <math.h>
  25. #include "config.h"
  26. #include "avformat.h"
  27. #include "avfilter.h"
  28. #include "avdevice.h"
  29. #include "cmdutils.h"
  30. #include "avstring.h"
  31. #include "version.h"
  32. #include "network.h"
  33. #undef exit
  34. double parse_number_or_die(const char *context, const char *numstr, int type, double min, double max)
  35. {
  36. char *tail;
  37. const char *error;
  38. double d = strtod(numstr, &tail);
  39. if (*tail)
  40. error= "Expected number for %s but found: %s\n";
  41. else if (d < min || d > max)
  42. error= "The value for %s was %s which is not within %f - %f\n";
  43. else if(type == OPT_INT64 && (int64_t)d != d)
  44. error= "Expected int64 for %s but found %s\n";
  45. else
  46. return d;
  47. fprintf(stderr, error, context, numstr, min, max);
  48. exit(1);
  49. }
  50. int64_t parse_time_or_die(const char *context, const char *timestr, int is_duration)
  51. {
  52. int64_t us = parse_date(timestr, is_duration);
  53. if (us == INT64_MIN) {
  54. fprintf(stderr, "Invalid %s specification for %s: %s\n",
  55. is_duration ? "duration" : "date", context, timestr);
  56. exit(1);
  57. }
  58. return us;
  59. }
  60. void show_help_options(const OptionDef *options, const char *msg, int mask, int value)
  61. {
  62. const OptionDef *po;
  63. int first;
  64. first = 1;
  65. for(po = options; po->name != NULL; po++) {
  66. char buf[64];
  67. if ((po->flags & mask) == value) {
  68. if (first) {
  69. printf("%s", msg);
  70. first = 0;
  71. }
  72. av_strlcpy(buf, po->name, sizeof(buf));
  73. if (po->flags & HAS_ARG) {
  74. av_strlcat(buf, " ", sizeof(buf));
  75. av_strlcat(buf, po->argname, sizeof(buf));
  76. }
  77. printf("-%-17s %s\n", buf, po->help);
  78. }
  79. }
  80. }
  81. static const OptionDef* find_option(const OptionDef *po, const char *name){
  82. while (po->name != NULL) {
  83. if (!strcmp(name, po->name))
  84. break;
  85. po++;
  86. }
  87. return po;
  88. }
  89. void parse_options(int argc, char **argv, const OptionDef *options,
  90. void (* parse_arg_function)(const char*))
  91. {
  92. const char *opt, *arg;
  93. int optindex, handleoptions=1;
  94. const OptionDef *po;
  95. /* parse options */
  96. optindex = 1;
  97. while (optindex < argc) {
  98. opt = argv[optindex++];
  99. if (handleoptions && opt[0] == '-' && opt[1] != '\0') {
  100. if (opt[1] == '-' && opt[2] == '\0') {
  101. handleoptions = 0;
  102. continue;
  103. }
  104. po= find_option(options, opt + 1);
  105. if (!po->name)
  106. po= find_option(options, "default");
  107. if (!po->name) {
  108. unknown_opt:
  109. fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], opt);
  110. exit(1);
  111. }
  112. arg = NULL;
  113. if (po->flags & HAS_ARG) {
  114. arg = argv[optindex++];
  115. if (!arg) {
  116. fprintf(stderr, "%s: missing argument for option '%s'\n", argv[0], opt);
  117. exit(1);
  118. }
  119. }
  120. if (po->flags & OPT_STRING) {
  121. char *str;
  122. str = av_strdup(arg);
  123. *po->u.str_arg = str;
  124. } else if (po->flags & OPT_BOOL) {
  125. *po->u.int_arg = 1;
  126. } else if (po->flags & OPT_INT) {
  127. *po->u.int_arg = parse_number_or_die(opt+1, arg, OPT_INT64, INT_MIN, INT_MAX);
  128. } else if (po->flags & OPT_INT64) {
  129. *po->u.int64_arg = parse_number_or_die(opt+1, arg, OPT_INT64, INT64_MIN, INT64_MAX);
  130. } else if (po->flags & OPT_FLOAT) {
  131. *po->u.float_arg = parse_number_or_die(opt+1, arg, OPT_FLOAT, -1.0/0.0, 1.0/0.0);
  132. } else if (po->flags & OPT_FUNC2) {
  133. if(po->u.func2_arg(opt+1, arg)<0)
  134. goto unknown_opt;
  135. } else {
  136. po->u.func_arg(arg);
  137. }
  138. } else {
  139. if (parse_arg_function)
  140. parse_arg_function(opt);
  141. }
  142. }
  143. }
  144. void print_error(const char *filename, int err)
  145. {
  146. switch(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",
  152. filename);
  153. break;
  154. case AVERROR_INVALIDDATA:
  155. fprintf(stderr, "%s: Error while parsing header\n", filename);
  156. break;
  157. case AVERROR_NOFMT:
  158. fprintf(stderr, "%s: Unknown format\n", filename);
  159. break;
  160. case AVERROR(EIO):
  161. fprintf(stderr, "%s: I/O error occurred\n"
  162. "Usually that means that input file is truncated and/or corrupted.\n",
  163. filename);
  164. break;
  165. case AVERROR(ENOMEM):
  166. fprintf(stderr, "%s: memory allocation error occurred\n", filename);
  167. break;
  168. case AVERROR(ENOENT):
  169. fprintf(stderr, "%s: no such file or directory\n", filename);
  170. break;
  171. case AVERROR(FF_NETERROR(EPROTONOSUPPORT)):
  172. fprintf(stderr, "%s: Unsupported network protocol\n", filename);
  173. break;
  174. default:
  175. fprintf(stderr, "%s: Error while opening file\n", filename);
  176. break;
  177. }
  178. }
  179. void show_banner(const char *program_name, int program_birth_year)
  180. {
  181. fprintf(stderr, "%s version " FFMPEG_VERSION ", Copyright (c) %d-2008 Fabrice Bellard, et al.\n",
  182. program_name, program_birth_year);
  183. fprintf(stderr, " configuration: " FFMPEG_CONFIGURATION "\n");
  184. fprintf(stderr, " libavutil version: " AV_STRINGIFY(LIBAVUTIL_VERSION) "\n");
  185. fprintf(stderr, " libavcodec version: " AV_STRINGIFY(LIBAVCODEC_VERSION) "\n");
  186. fprintf(stderr, " libavformat version: " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\n");
  187. fprintf(stderr, " libavdevice version: " AV_STRINGIFY(LIBAVDEVICE_VERSION) "\n");
  188. #if ENABLE_AVFILTER
  189. fprintf(stderr, " libavfilter version: " AV_STRINGIFY(LIBAVFILTER_VERSION) "\n");
  190. #endif
  191. fprintf(stderr, " built on " __DATE__ " " __TIME__);
  192. #ifdef __GNUC__
  193. fprintf(stderr, ", gcc: " __VERSION__ "\n");
  194. #else
  195. fprintf(stderr, ", using a non-gcc compiler\n");
  196. #endif
  197. }
  198. void show_version(const char *program_name) {
  199. /* TODO: add function interface to avutil and avformat avdevice*/
  200. printf("%s " FFMPEG_VERSION "\n", program_name);
  201. printf("libavutil %d\n"
  202. "libavcodec %d\n"
  203. "libavformat %d\n"
  204. "libavdevice %d\n",
  205. LIBAVUTIL_BUILD, avcodec_build(), LIBAVFORMAT_BUILD, LIBAVDEVICE_BUILD);
  206. }
  207. void show_license(void)
  208. {
  209. #ifdef CONFIG_NONFREE
  210. printf(
  211. "This version of FFmpeg has nonfree parts compiled in.\n"
  212. "Therefore it is not legally redistributable.\n"
  213. );
  214. #elif CONFIG_GPL
  215. printf(
  216. "FFmpeg is free software; you can redistribute it and/or modify\n"
  217. "it under the terms of the GNU General Public License as published by\n"
  218. "the Free Software Foundation; either version 2 of the License, or\n"
  219. "(at your option) any later version.\n"
  220. "\n"
  221. "FFmpeg is distributed in the hope that it will be useful,\n"
  222. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  223. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  224. "GNU General Public License for more details.\n"
  225. "\n"
  226. "You should have received a copy of the GNU General Public License\n"
  227. "along with FFmpeg; if not, write to the Free Software\n"
  228. "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
  229. );
  230. #else
  231. printf(
  232. "FFmpeg is free software; you can redistribute it and/or\n"
  233. "modify it under the terms of the GNU Lesser General Public\n"
  234. "License as published by the Free Software Foundation; either\n"
  235. "version 2.1 of the License, or (at your option) any later version.\n"
  236. "\n"
  237. "FFmpeg is distributed in the hope that it will be useful,\n"
  238. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  239. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
  240. "Lesser General Public License for more details.\n"
  241. "\n"
  242. "You should have received a copy of the GNU Lesser General Public\n"
  243. "License along with FFmpeg; if not, write to the Free Software\n"
  244. "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
  245. );
  246. #endif
  247. }