Mercurial > libavcodec.hg
annotate eval.h @ 11739:ceffa0ca7596 libavcodec
Change the order of parameters for ff_eval_expr() and
ff_parse_and_eval_expr(), place the names for constants/functions
before the corresponding values.
This looks more readable, as the user is expected to know the names
before the values.
| author | stefano |
|---|---|
| date | Sun, 16 May 2010 23:00:22 +0000 |
| parents | 7dd2a45249a9 |
| children | c6368258b694 |
| 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 /** | |
|
11644
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
11621
diff
changeset
|
22 * @file |
|
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 const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0} | |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
37 * @param const_value a zero terminated array of values for the identifers from const_name |
| 4138 | 38 * @param func1_name NULL terminated array of zero terminated strings of func1 identifers |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
39 * @param func1 NULL terminated array of function pointers for functions which take 1 argument |
| 4138 | 40 * @param func2_name NULL terminated array of zero terminated strings of func2 identifers |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
41 * @param func2 NULL terminated array of function pointers for functions which take 2 arguments |
| 4138 | 42 * @param error pointer to a char* which is set to an error message if something goes wrong |
| 43 * @param opaque a pointer which will be passed to all functions from func1 and func2 | |
| 44 * @return the value of the expression | |
| 45 */ | |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
46 double ff_parse_and_eval_expr(const char *s, |
|
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
47 const char * const *const_name, const double *const_value, |
|
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
48 const char * const *func1_name, double (* const *func1)(void *, double), |
|
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
49 const char * const *func2_name, double (* const *func2)(void *, double, double), |
| 6324 | 50 void *opaque, const char **error); |
| 3790 | 51 |
| 4138 | 52 /** |
| 11621 | 53 * Parses an expression. |
| 11603 | 54 * |
| 4138 | 55 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" |
| 56 * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0} | |
| 57 * @param func1_name NULL terminated array of zero terminated strings of func1 identifers | |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
58 * @param func1 NULL terminated array of function pointers for functions which take 1 argument |
| 4138 | 59 * @param func2_name NULL terminated array of zero terminated strings of func2 identifers |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
60 * @param func2 NULL terminated array of function pointers for functions which take 2 arguments |
| 4138 | 61 * @param error pointer to a char* which is set to an error message if something goes wrong |
| 11597 | 62 * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore |
| 4138 | 63 * NULL if anything went wrong |
| 64 */ | |
|
11739
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
65 AVExpr *ff_parse_expr(const char *s, |
|
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
66 const char * const *const_name, |
|
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
67 const char * const *func1_name, double (* const *func1)(void *, double), |
|
ceffa0ca7596
Change the order of parameters for ff_eval_expr() and
stefano
parents:
11644
diff
changeset
|
68 const char * const *func2_name, double (* const *func2)(void *, double, double), |
| 6324 | 69 const char **error); |
| 11603 | 70 |
| 4138 | 71 /** |
| 72 * Evaluates a previously parsed expression. | |
| 11603 | 73 * |
| 4138 | 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 */ | |
| 11604 | 78 double ff_eval_expr(AVExpr * e, const double *const_value, void *opaque); |
| 11597 | 79 |
| 11599 | 80 /** |
| 81 * Frees a parsed expression previously created with ff_parse(). | |
| 82 */ | |
| 11597 | 83 void ff_free_expr(AVExpr *e); |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
3947
diff
changeset
|
84 |
| 9886 | 85 /** |
| 86 * Parses the string in numstr and returns its value as a double. If | |
| 87 * the string is empty, contains only whitespaces, or does not contain | |
| 88 * an initial substring that has the expected syntax for a | |
| 89 * floating-point number, no conversion is performed. In this case, | |
| 90 * returns a value of zero and the value returned in tail is the value | |
| 91 * of numstr. | |
| 92 * | |
| 93 * @param numstr a string representing a number, may contain one of | |
| 94 * the International System number postfixes, for example 'K', 'M', | |
| 95 * 'G'. If 'i' is appended after the postfix, powers of 2 are used | |
| 96 * instead of powers of 10. The 'B' postfix multiplies the value for | |
| 97 * 8, and can be appended after another postfix or used alone. This | |
| 98 * allows using for example 'KB', 'MiB', 'G' and 'B' as postfix. | |
| 99 * @param tail if non-NULL puts here the pointer to the char next | |
| 100 * after the last parsed character | |
| 9880 | 101 */ |
| 102 double av_strtod(const char *numstr, char **tail); | |
| 103 | |
| 7760 | 104 #endif /* AVCODEC_EVAL_H */ |
