cmdutils.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 _CMD_UTILS_H
  22. #define _CMD_UTILS_H
  23. typedef struct {
  24. const char *name;
  25. int flags;
  26. #define HAS_ARG 0x0001
  27. #define OPT_BOOL 0x0002
  28. #define OPT_EXPERT 0x0004
  29. #define OPT_STRING 0x0008
  30. #define OPT_VIDEO 0x0010
  31. #define OPT_AUDIO 0x0020
  32. #define OPT_GRAB 0x0040
  33. #define OPT_INT 0x0080
  34. #define OPT_FLOAT 0x0100
  35. #define OPT_SUBTITLE 0x0200
  36. #define OPT_FUNC2 0x0400
  37. #define OPT_INT64 0x0800
  38. union {
  39. void (*func_arg)(const char *); //FIXME passing error code as int return would be nicer then exit() in the func
  40. int *int_arg;
  41. char **str_arg;
  42. float *float_arg;
  43. int (*func2_arg)(const char *, const char *);
  44. int64_t *int64_arg;
  45. } u;
  46. const char *help;
  47. const char *argname;
  48. } OptionDef;
  49. void show_help_options(const OptionDef *options, const char *msg, int mask, int value);
  50. void parse_options(int argc, char **argv, const OptionDef *options);
  51. void parse_arg_file(const char *filename);
  52. void print_error(const char *filename, int err);
  53. #endif /* _CMD_UTILS_H */