annotate eval.h @ 11830:8a545fab1a90 libavcodec

Add WebM muxer Patch by James Zern <jzern at google>
author conrad
date Fri, 04 Jun 2010 22:40:54 +0000
parents f0aac2d7e335
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3790
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
1 /*
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
2 * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
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
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
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
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
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
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
14 * Lesser General Public License for more details.
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
15 *
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
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
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
19 */
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
20
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
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
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
24 */
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
25
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6354
diff changeset
26 #ifndef AVCODEC_EVAL_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6354
diff changeset
27 #define AVCODEC_EVAL_H
3790
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
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
michael
parents: 4081
diff changeset
31 /**
michael
parents: 4081
diff changeset
32 * Parses and evaluates an expression.
11604
6bab1bfac3bb Rename ff_parse_eval() to ff_eval_expr().
stefano
parents: 11603
diff changeset
33 * Note, this is significantly slower than ff_eval_expr().
11603
5cbea9fe32df Place some empty line in the doxy.
stefano
parents: 11602
diff changeset
34 *
11801
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
35 * @param res a pointer to a double where is put the result value of
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
36 * the expression, or NAN in case of error
11820
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
37 * @param s expression as a zero terminated string, for example "1+2^3+5*5+sin(2/3)"
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
38 * @param const_names NULL terminated array of zero terminated strings of constant identifiers, for example {"PI", "E", 0}
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
39 * @param const_values a zero terminated array of values for the identifiers from const_names
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
40 * @param func1_names NULL terminated array of zero terminated strings of funcs1 identifiers
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
41 * @param funcs1 NULL terminated array of function pointers for functions which take 1 argument
11820
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
42 * @param func2_names NULL terminated array of zero terminated strings of funcs2 identifiers
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
43 * @param funcs2 NULL terminated array of function pointers for functions which take 2 arguments
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
44 * @param opaque a pointer which will be passed to all functions from funcs1 and funcs2
11749
c6368258b694 Change eval API to take parent log context and log level offset.
michael
parents: 11739
diff changeset
45 * @param log_ctx parent logging context
11801
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
46 * @return 0 in case of success, a negative value corresponding to an
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
47 * AVERROR code otherwise
4138
michael
parents: 4081
diff changeset
48 */
11801
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
49 int ff_parse_and_eval_expr(double *res, const char *s,
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
50 const char * const *const_names, const double *const_values,
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
51 const char * const *func1_names, double (* const *funcs1)(void *, double),
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
52 const char * const *func2_names, double (* const *funcs2)(void *, double, double),
11804
3dc6ee95d63a Cosmetics: reindent and break some overly long line.
stefano
parents: 11802
diff changeset
53 void *opaque, int log_offset, void *log_ctx);
3790
7b289e4ae034 Add forgotten eval.h...
takis
parents:
diff changeset
54
4138
michael
parents: 4081
diff changeset
55 /**
11621
84df190892f4 Fix grammar: a expression -> an expression.
stefano
parents: 11620
diff changeset
56 * Parses an expression.
11603
5cbea9fe32df Place some empty line in the doxy.
stefano
parents: 11602
diff changeset
57 *
11801
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
58 * @param expr a pointer where is put an AVExpr containing the parsed
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
59 * value in case of successfull parsing, or NULL otherwise.
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
60 * The pointed to AVExpr must be freed with ff_free_expr() by the user
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
61 * when it is not needed anymore.
11820
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
62 * @param s expression as a zero terminated string, for example "1+2^3+5*5+sin(2/3)"
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
63 * @param const_names NULL terminated array of zero terminated strings of constant identifiers, for example {"PI", "E", 0}
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
64 * @param func1_names NULL terminated array of zero terminated strings of funcs1 identifiers
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
65 * @param funcs1 NULL terminated array of function pointers for functions which take 1 argument
11820
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
66 * @param func2_names NULL terminated array of zero terminated strings of funcs2 identifiers
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
67 * @param funcs2 NULL terminated array of function pointers for functions which take 2 arguments
11749
c6368258b694 Change eval API to take parent log context and log level offset.
michael
parents: 11739
diff changeset
68 * @param log_ctx parent logging context
11801
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
69 * @return 0 in case of success, a negative value corresponding to an
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
70 * AVERROR code otherwise
4138
michael
parents: 4081
diff changeset
71 */
11801
026edf66e3a9 Make ff_parse_expr() and ff_parse_and_eval_expr() return an int
stefano
parents: 11750
diff changeset
72 int ff_parse_expr(AVExpr **expr, const char *s,
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
73 const char * const *const_names,
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
74 const char * const *func1_names, double (* const *funcs1)(void *, double),
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
75 const char * const *func2_names, double (* const *funcs2)(void *, double, double),
11804
3dc6ee95d63a Cosmetics: reindent and break some overly long line.
stefano
parents: 11802
diff changeset
76 int log_offset, void *log_ctx);
11603
5cbea9fe32df Place some empty line in the doxy.
stefano
parents: 11602
diff changeset
77
4138
michael
parents: 4081
diff changeset
78 /**
michael
parents: 4081
diff changeset
79 * Evaluates a previously parsed expression.
11603
5cbea9fe32df Place some empty line in the doxy.
stefano
parents: 11602
diff changeset
80 *
11820
f0aac2d7e335 Fix misc typos.
stefano
parents: 11804
diff changeset
81 * @param const_values a zero terminated array of values for the identifiers from ff_parse() const_names
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
82 * @param opaque a pointer which will be passed to all functions from funcs1 and funcs2
4138
michael
parents: 4081
diff changeset
83 * @return the value of the expression
michael
parents: 4081
diff changeset
84 */
11802
5880d90f2b99 Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:
stefano
parents: 11801
diff changeset
85 double ff_eval_expr(AVExpr *e, const double *const_values, void *opaque);
11597
fce0ed54244c Rename ff_eval_free() to ff_free_expr().
stefano
parents: 11596
diff changeset
86
11599
192399381906 Doxument ff_free_expr().
stefano
parents: 11597
diff changeset
87 /**
11750
d7a5fc4b7aee Fix doxy reference to unexisting function.
stefano
parents: 11749
diff changeset
88 * Frees a parsed expression previously created with ff_parse_expr().
11599
192399381906 Doxument ff_free_expr().
stefano
parents: 11597
diff changeset
89 */
11597
fce0ed54244c Rename ff_eval_free() to ff_free_expr().
stefano
parents: 11596
diff changeset
90 void ff_free_expr(AVExpr *e);
4081
cedb63307f3d new optimized eval method, by seperating parsing and runtime
ods15
parents: 3947
diff changeset
91
9886
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
92 /**
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
93 * Parses the string in numstr and returns its value as a double. If
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
94 * the string is empty, contains only whitespaces, or does not contain
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
95 * an initial substring that has the expected syntax for a
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
96 * floating-point number, no conversion is performed. In this case,
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
97 * returns a value of zero and the value returned in tail is the value
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
98 * of numstr.
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
99 *
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
100 * @param numstr a string representing a number, may contain one of
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
101 * the International System number postfixes, for example 'K', 'M',
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
102 * 'G'. If 'i' is appended after the postfix, powers of 2 are used
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
103 * instead of powers of 10. The 'B' postfix multiplies the value for
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
104 * 8, and can be appended after another postfix or used alone. This
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
105 * allows using for example 'KB', 'MiB', 'G' and 'B' as postfix.
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
106 * @param tail if non-NULL puts here the pointer to the char next
3207f2314192 Rewrite doxy for av_strtod().
stefano
parents: 9880
diff changeset
107 * after the last parsed character
9880
e934c5f8f4a9 Export av_strtod() to eval.h.
stefano
parents: 8718
diff changeset
108 */
e934c5f8f4a9 Export av_strtod() to eval.h.
stefano
parents: 8718
diff changeset
109 double av_strtod(const char *numstr, char **tail);
e934c5f8f4a9 Export av_strtod() to eval.h.
stefano
parents: 8718
diff changeset
110
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6354
diff changeset
111 #endif /* AVCODEC_EVAL_H */