You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
4.7KB

  1. /*
  2. * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file libavcodec/eval.h
  22. * simple arithmetic expression evaluator
  23. */
  24. #ifndef AVCODEC_EVAL_H
  25. #define AVCODEC_EVAL_H
  26. typedef struct AVExpr AVExpr;
  27. /**
  28. * Parses and evaluates an expression.
  29. * Note, this is significantly slower than ff_eval_expr().
  30. *
  31. * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
  32. * @param func1 NULL terminated array of function pointers for functions which take 1 argument
  33. * @param func2 NULL terminated array of function pointers for functions which take 2 arguments
  34. * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0}
  35. * @param func1_name NULL terminated array of zero terminated strings of func1 identifers
  36. * @param func2_name NULL terminated array of zero terminated strings of func2 identifers
  37. * @param error pointer to a char* which is set to an error message if something goes wrong
  38. * @param const_value a zero terminated array of values for the identifers from const_name
  39. * @param opaque a pointer which will be passed to all functions from func1 and func2
  40. * @return the value of the expression
  41. */
  42. double ff_parse_and_eval_expr(const char *s, const double *const_value, const char * const *const_name,
  43. double (* const *func1)(void *, double), const char * const *func1_name,
  44. double (* const *func2)(void *, double, double), const char * const *func2_name,
  45. void *opaque, const char **error);
  46. /**
  47. * Parses an expression.
  48. *
  49. * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
  50. * @param func1 NULL terminated array of function pointers for functions which take 1 argument
  51. * @param func2 NULL terminated array of function pointers for functions which take 2 arguments
  52. * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0}
  53. * @param func1_name NULL terminated array of zero terminated strings of func1 identifers
  54. * @param func2_name NULL terminated array of zero terminated strings of func2 identifers
  55. * @param error pointer to a char* which is set to an error message if something goes wrong
  56. * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore
  57. * NULL if anything went wrong
  58. */
  59. AVExpr *ff_parse_expr(const char *s, const char * const *const_name,
  60. double (* const *func1)(void *, double), const char * const *func1_name,
  61. double (* const *func2)(void *, double, double), const char * const *func2_name,
  62. const char **error);
  63. /**
  64. * Evaluates a previously parsed expression.
  65. *
  66. * @param const_value a zero terminated array of values for the identifers from ff_parse const_name
  67. * @param opaque a pointer which will be passed to all functions from func1 and func2
  68. * @return the value of the expression
  69. */
  70. double ff_eval_expr(AVExpr * e, const double *const_value, void *opaque);
  71. /**
  72. * Frees a parsed expression previously created with ff_parse().
  73. */
  74. void ff_free_expr(AVExpr *e);
  75. /**
  76. * Parses the string in numstr and returns its value as a double. If
  77. * the string is empty, contains only whitespaces, or does not contain
  78. * an initial substring that has the expected syntax for a
  79. * floating-point number, no conversion is performed. In this case,
  80. * returns a value of zero and the value returned in tail is the value
  81. * of numstr.
  82. *
  83. * @param numstr a string representing a number, may contain one of
  84. * the International System number postfixes, for example 'K', 'M',
  85. * 'G'. If 'i' is appended after the postfix, powers of 2 are used
  86. * instead of powers of 10. The 'B' postfix multiplies the value for
  87. * 8, and can be appended after another postfix or used alone. This
  88. * allows using for example 'KB', 'MiB', 'G' and 'B' as postfix.
  89. * @param tail if non-NULL puts here the pointer to the char next
  90. * after the last parsed character
  91. */
  92. double av_strtod(const char *numstr, char **tail);
  93. #endif /* AVCODEC_EVAL_H */