cmdutils.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Various utilities for command line tools
  3. * copyright (c) 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. #ifndef FFMPEG_CMDUTILS_H
  22. #define FFMPEG_CMDUTILS_H
  23. #include <inttypes.h>
  24. typedef struct {
  25. const char *name;
  26. int flags;
  27. #define HAS_ARG 0x0001
  28. #define OPT_BOOL 0x0002
  29. #define OPT_EXPERT 0x0004
  30. #define OPT_STRING 0x0008
  31. #define OPT_VIDEO 0x0010
  32. #define OPT_AUDIO 0x0020
  33. #define OPT_GRAB 0x0040
  34. #define OPT_INT 0x0080
  35. #define OPT_FLOAT 0x0100
  36. #define OPT_SUBTITLE 0x0200
  37. #define OPT_FUNC2 0x0400
  38. #define OPT_INT64 0x0800
  39. union {
  40. void (*func_arg)(const char *); //FIXME passing error code as int return would be nicer then exit() in the func
  41. int *int_arg;
  42. char **str_arg;
  43. float *float_arg;
  44. int (*func2_arg)(const char *, const char *);
  45. int64_t *int64_arg;
  46. } u;
  47. const char *help;
  48. const char *argname;
  49. } OptionDef;
  50. void show_help_options(const OptionDef *options, const char *msg, int mask, int value);
  51. /**
  52. * Parses the command line arguments.
  53. * @param options Array with the definitions required to interpret every
  54. * option of the form: -<option_name> [<argument>]
  55. * @param parse_arg_function Name of the function called to process every
  56. * argument without a leading option name flag. NULL if such arguments do
  57. * not have to be processed.
  58. */
  59. void parse_options(int argc, char **argv, const OptionDef *options,
  60. void (* parse_arg_function)(const char*));
  61. void print_error(const char *filename, int err);
  62. /**
  63. * Prints the banner of the program on stderr. The banner message
  64. * depends on the current versions of the repository and of the libav*
  65. * libraries.
  66. * @param program_name Name of the program.
  67. * @param program_birth_year Year of birth of the program.
  68. */
  69. void show_banner(const char *program_name, int program_birth_year);
  70. /**
  71. * Prints the version of the program on stdout. The version message
  72. * depends on the current versions of the repository and of the libav*
  73. * libraries.
  74. * @param program_name Name of the program.
  75. */
  76. void show_version(const char *program_name);
  77. /**
  78. * Prints on stdout the license of the program, which depends on the license of
  79. * the compiled libav* libraries.
  80. */
  81. void show_license(void);
  82. #endif /* FFMPEG_CMDUTILS_H */