Mercurial > libavcodec.hg
annotate eval.h @ 11604:6bab1bfac3bb libavcodec
Rename ff_parse_eval() to ff_eval_expr().
The new name expresses better what the function does.
| author | stefano |
|---|---|
| date | Sun, 11 Apr 2010 22:32:01 +0000 |
| parents | 5cbea9fe32df |
| children | 414a7cdaa54d |
| rev | line source |
|---|---|
| 3790 | 1 /* |
| 2 * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at> | |
| 3 * | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3790
diff
changeset
|
4 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3790
diff
changeset
|
5 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3790
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
| 3790 | 7 * modify it under the terms of the GNU Lesser General Public |
| 8 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3790
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
| 3790 | 10 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3790
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
| 3790 | 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 | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3790
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
| 3790 | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 */ | |
| 20 | |
| 21 /** | |
|
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8320
diff
changeset
|
22 * @file libavcodec/eval.h |
|
11602
da95280256b4
Remove redundant file descriptions from copyright headers.
stefano
parents:
11601
diff
changeset
|
23 * simple arithmetic expression evaluator |
| 3790 | 24 */ |
| 25 | |
| 7760 | 26 #ifndef AVCODEC_EVAL_H |
| 27 #define AVCODEC_EVAL_H | |
| 3790 | 28 |
|
11601
29fda2500178
Avoid the use of the symbol ff_expr_s for referencing AVExpr.
stefano
parents:
11599
diff
changeset
|
29 typedef struct AVExpr AVExpr; |
|
11595
116f25bad5fb
Move AVEvalExpr declaration at the beginning of the file, where it is
stefano
parents:
9886
diff
changeset
|
30 |
| 4138 | 31 /** |
| 32 * Parses and evaluates an expression. | |
| 11604 | 33 * Note, this is significantly slower than ff_eval_expr(). |
| 11603 | 34 * |
| 4138 | 35 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" |
| 36 * @param func1 NULL terminated array of function pointers for functions which take 1 argument | |
| 37 * @param func2 NULL terminated array of function pointers for functions which take 2 arguments | |
| 38 * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0} | |
| 39 * @param func1_name NULL terminated array of zero terminated strings of func1 identifers | |
| 40 * @param func2_name NULL terminated array of zero terminated strings of func2 identifers | |
| 41 * @param error pointer to a char* which is set to an error message if something goes wrong | |
| 42 * @param const_value a zero terminated array of values for the identifers from const_name | |
| 43 * @param opaque a pointer which will be passed to all functions from func1 and func2 | |
| 44 * @return the value of the expression | |
| 45 */ | |
| 8320 | 46 double ff_eval2(const char *s, const double *const_value, const char * const *const_name, |
| 3790 | 47 double (**func1)(void *, double), const char **func1_name, |
| 8320 | 48 double (**func2)(void *, double, double), const char **func2_name, |
| 6324 | 49 void *opaque, const char **error); |
| 3790 | 50 |
| 4138 | 51 /** |
| 52 * Parses a expression. | |
| 11603 | 53 * |
| 4138 | 54 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" |
| 55 * @param func1 NULL terminated array of function pointers for functions which take 1 argument | |
| 56 * @param func2 NULL terminated array of function pointers for functions which take 2 arguments | |
| 57 * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0} | |
| 58 * @param func1_name NULL terminated array of zero terminated strings of func1 identifers | |
| 59 * @param func2_name NULL terminated array of zero terminated strings of func2 identifers | |
| 60 * @param error pointer to a char* which is set to an error message if something goes wrong | |
| 11597 | 61 * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore |
| 4138 | 62 * NULL if anything went wrong |
| 63 */ | |
|
11596
e22a96273dc4
Rename AVEvalExpr to AVExpr, as suggested by Michael.
stefano
parents:
11595
diff
changeset
|
64 AVExpr * ff_parse(const char *s, const char * const *const_name, |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
3947
diff
changeset
|
65 double (**func1)(void *, double), const char **func1_name, |
| 8320 | 66 double (**func2)(void *, double, double), const char **func2_name, |
| 6324 | 67 const char **error); |
| 11603 | 68 |
| 4138 | 69 /** |
| 70 * Evaluates a previously parsed expression. | |
| 11603 | 71 * |
| 4138 | 72 * @param const_value a zero terminated array of values for the identifers from ff_parse const_name |
| 73 * @param opaque a pointer which will be passed to all functions from func1 and func2 | |
| 74 * @return the value of the expression | |
| 75 */ | |
| 11604 | 76 double ff_eval_expr(AVExpr * e, const double *const_value, void *opaque); |
| 11597 | 77 |
| 11599 | 78 /** |
| 79 * Frees a parsed expression previously created with ff_parse(). | |
| 80 */ | |
| 11597 | 81 void ff_free_expr(AVExpr *e); |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
3947
diff
changeset
|
82 |
| 9886 | 83 /** |
| 84 * Parses the string in numstr and returns its value as a double. If | |
| 85 * the string is empty, contains only whitespaces, or does not contain | |
| 86 * an initial substring that has the expected syntax for a | |
| 87 * floating-point number, no conversion is performed. In this case, | |
| 88 * returns a value of zero and the value returned in tail is the value | |
| 89 * of numstr. | |
| 90 * | |
| 91 * @param numstr a string representing a number, may contain one of | |
| 92 * the International System number postfixes, for example 'K', 'M', | |
| 93 * 'G'. If 'i' is appended after the postfix, powers of 2 are used | |
| 94 * instead of powers of 10. The 'B' postfix multiplies the value for | |
| 95 * 8, and can be appended after another postfix or used alone. This | |
| 96 * allows using for example 'KB', 'MiB', 'G' and 'B' as postfix. | |
| 97 * @param tail if non-NULL puts here the pointer to the char next | |
| 98 * after the last parsed character | |
| 9880 | 99 */ |
| 100 double av_strtod(const char *numstr, char **tail); | |
| 101 | |
| 7760 | 102 #endif /* AVCODEC_EVAL_H */ |
