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.

88 lines
4.0KB

  1. /*
  2. * simple arithmetic expression evaluator
  3. *
  4. * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file eval.h
  24. * eval header.
  25. */
  26. #ifndef AVCODEC_EVAL_H
  27. #define AVCODEC_EVAL_H
  28. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  29. /**
  30. * @deprecated Use ff_eval2 instead
  31. */
  32. double ff_eval(char *s, double *const_value, const char **const_name,
  33. double (**func1)(void *, double), const char **func1_name,
  34. double (**func2)(void *, double, double), char **func2_name,
  35. void *opaque);
  36. #endif
  37. /**
  38. * Parses and evaluates an expression.
  39. * Note, this is significantly slower than ff_parse_eval()
  40. * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
  41. * @param func1 NULL terminated array of function pointers for functions which take 1 argument
  42. * @param func2 NULL terminated array of function pointers for functions which take 2 arguments
  43. * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0}
  44. * @param func1_name NULL terminated array of zero terminated strings of func1 identifers
  45. * @param func2_name NULL terminated array of zero terminated strings of func2 identifers
  46. * @param error pointer to a char* which is set to an error message if something goes wrong
  47. * @param const_value a zero terminated array of values for the identifers from const_name
  48. * @param opaque a pointer which will be passed to all functions from func1 and func2
  49. * @return the value of the expression
  50. */
  51. double ff_eval2(char *s, double *const_value, const char **const_name,
  52. double (**func1)(void *, double), const char **func1_name,
  53. double (**func2)(void *, double, double), char **func2_name,
  54. void *opaque, char **error);
  55. typedef struct ff_expr_s AVEvalExpr;
  56. /**
  57. * Parses a expression.
  58. * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
  59. * @param func1 NULL terminated array of function pointers for functions which take 1 argument
  60. * @param func2 NULL terminated array of function pointers for functions which take 2 arguments
  61. * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0}
  62. * @param func1_name NULL terminated array of zero terminated strings of func1 identifers
  63. * @param func2_name NULL terminated array of zero terminated strings of func2 identifers
  64. * @param error pointer to a char* which is set to an error message if something goes wrong
  65. * @return AVEvalExpr which must be freed with ff_eval_free by the user when it is not needed anymore
  66. * NULL if anything went wrong
  67. */
  68. AVEvalExpr * ff_parse(char *s, const char **const_name,
  69. double (**func1)(void *, double), const char **func1_name,
  70. double (**func2)(void *, double, double), char **func2_name,
  71. char **error);
  72. /**
  73. * Evaluates a previously parsed expression.
  74. * @param const_value a zero terminated array of values for the identifers from ff_parse const_name
  75. * @param opaque a pointer which will be passed to all functions from func1 and func2
  76. * @return the value of the expression
  77. */
  78. double ff_parse_eval(AVEvalExpr * e, double *const_value, void *opaque);
  79. void ff_eval_free(AVEvalExpr * e);
  80. #endif /* AVCODEC_EVAL_H */