| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2010-04-11 20:04:11 +00:00
										 |  |  |  * simple arithmetic expression evaluator | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  | #ifndef AVUTIL_EVAL_H
 | 
					
						
							|  |  |  | #define AVUTIL_EVAL_H
 | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-11 18:44:51 +00:00
										 |  |  | typedef struct AVExpr AVExpr; | 
					
						
							| 
									
										
										
										
											2010-04-11 11:47:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-03 20:30:22 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-06-30 15:38:06 +00:00
										 |  |  |  * Parse and evaluate an expression. | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  |  * Note, this is significantly slower than av_eval_expr(). | 
					
						
							| 
									
										
										
										
											2010-04-11 20:04:15 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:07 +00:00
										 |  |  |  * @param res a pointer to a double where is put the result value of | 
					
						
							|  |  |  |  * the expression, or NAN in case of error | 
					
						
							| 
									
										
										
										
											2010-06-03 18:53:35 +00:00
										 |  |  |  * @param s expression as a zero terminated string, for example "1+2^3+5*5+sin(2/3)" | 
					
						
							|  |  |  |  * @param const_names NULL terminated array of zero terminated strings of constant identifiers, for example {"PI", "E", 0} | 
					
						
							|  |  |  |  * @param const_values a zero terminated array of values for the identifiers from const_names | 
					
						
							|  |  |  |  * @param func1_names NULL terminated array of zero terminated strings of funcs1 identifiers | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |  * @param funcs1 NULL terminated array of function pointers for functions which take 1 argument | 
					
						
							| 
									
										
										
										
											2010-06-03 18:53:35 +00:00
										 |  |  |  * @param func2_names NULL terminated array of zero terminated strings of funcs2 identifiers | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |  * @param funcs2 NULL terminated array of function pointers for functions which take 2 arguments | 
					
						
							|  |  |  |  * @param opaque a pointer which will be passed to all functions from funcs1 and funcs2 | 
					
						
							| 
									
										
										
										
											2010-05-19 22:55:29 +00:00
										 |  |  |  * @param log_ctx parent logging context | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:07 +00:00
										 |  |  |  * @return 0 in case of success, a negative value corresponding to an | 
					
						
							|  |  |  |  * AVERROR code otherwise | 
					
						
							| 
									
										
										
										
											2006-11-03 20:30:22 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  | int av_parse_and_eval_expr(double *res, const char *s, | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |                            const char * const *const_names, const double *const_values, | 
					
						
							|  |  |  |                            const char * const *func1_names, double (* const *funcs1)(void *, double), | 
					
						
							|  |  |  |                            const char * const *func2_names, double (* const *funcs2)(void *, double, double), | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:17 +00:00
										 |  |  |                            void *opaque, int log_offset, void *log_ctx); | 
					
						
							| 
									
										
										
										
											2006-09-29 19:48:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-03 20:30:22 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-06-30 15:38:06 +00:00
										 |  |  |  * Parse an expression. | 
					
						
							| 
									
										
										
										
											2010-04-11 20:04:15 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:07 +00:00
										 |  |  |  * @param expr a pointer where is put an AVExpr containing the parsed | 
					
						
							|  |  |  |  * value in case of successfull parsing, or NULL otherwise. | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  |  * The pointed to AVExpr must be freed with av_free_expr() by the user | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:07 +00:00
										 |  |  |  * when it is not needed anymore. | 
					
						
							| 
									
										
										
										
											2010-06-03 18:53:35 +00:00
										 |  |  |  * @param s expression as a zero terminated string, for example "1+2^3+5*5+sin(2/3)" | 
					
						
							|  |  |  |  * @param const_names NULL terminated array of zero terminated strings of constant identifiers, for example {"PI", "E", 0} | 
					
						
							|  |  |  |  * @param func1_names NULL terminated array of zero terminated strings of funcs1 identifiers | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |  * @param funcs1 NULL terminated array of function pointers for functions which take 1 argument | 
					
						
							| 
									
										
										
										
											2010-06-03 18:53:35 +00:00
										 |  |  |  * @param func2_names NULL terminated array of zero terminated strings of funcs2 identifiers | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |  * @param funcs2 NULL terminated array of function pointers for functions which take 2 arguments | 
					
						
							| 
									
										
										
										
											2010-05-19 22:55:29 +00:00
										 |  |  |  * @param log_ctx parent logging context | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:07 +00:00
										 |  |  |  * @return 0 in case of success, a negative value corresponding to an | 
					
						
							|  |  |  |  * AVERROR code otherwise | 
					
						
							| 
									
										
										
										
											2006-11-03 20:30:22 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  | int av_parse_expr(AVExpr **expr, const char *s, | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |                   const char * const *const_names, | 
					
						
							|  |  |  |                   const char * const *func1_names, double (* const *funcs1)(void *, double), | 
					
						
							|  |  |  |                   const char * const *func2_names, double (* const *funcs2)(void *, double, double), | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:17 +00:00
										 |  |  |                   int log_offset, void *log_ctx); | 
					
						
							| 
									
										
										
										
											2010-04-11 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-03 20:30:22 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-06-30 15:38:06 +00:00
										 |  |  |  * Evaluate a previously parsed expression. | 
					
						
							| 
									
										
										
										
											2010-04-11 20:04:15 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  |  * @param const_values a zero terminated array of values for the identifiers from av_parse_expr() const_names | 
					
						
							| 
									
										
										
										
											2010-06-01 08:07:12 +00:00
										 |  |  |  * @param opaque a pointer which will be passed to all functions from funcs1 and funcs2 | 
					
						
							| 
									
										
										
										
											2006-11-03 20:30:22 +00:00
										 |  |  |  * @return the value of the expression | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  | double av_eval_expr(AVExpr *e, const double *const_values, void *opaque); | 
					
						
							| 
									
										
										
										
											2010-04-11 11:47:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-11 14:15:32 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-06-30 15:38:06 +00:00
										 |  |  |  * Free a parsed expression previously created with av_parse_expr(). | 
					
						
							| 
									
										
										
										
											2010-04-11 14:15:32 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  | void av_free_expr(AVExpr *e); | 
					
						
							| 
									
										
										
										
											2006-10-27 16:42:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 22:35:11 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-06-30 15:38:06 +00:00
										 |  |  |  * Parse the string in numstr and return its value as a double. If | 
					
						
							| 
									
										
										
										
											2009-06-24 22:35:11 +00:00
										 |  |  |  * the string is empty, contains only whitespaces, or does not contain | 
					
						
							|  |  |  |  * an initial substring that has the expected syntax for a | 
					
						
							|  |  |  |  * floating-point number, no conversion is performed. In this case, | 
					
						
							|  |  |  |  * returns a value of zero and the value returned in tail is the value | 
					
						
							|  |  |  |  * of numstr. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param numstr a string representing a number, may contain one of | 
					
						
							|  |  |  |  * the International System number postfixes, for example 'K', 'M', | 
					
						
							|  |  |  |  * 'G'. If 'i' is appended after the postfix, powers of 2 are used | 
					
						
							|  |  |  |  * instead of powers of 10. The 'B' postfix multiplies the value for | 
					
						
							|  |  |  |  * 8, and can be appended after another postfix or used alone. This | 
					
						
							|  |  |  |  * allows using for example 'KB', 'MiB', 'G' and 'B' as postfix. | 
					
						
							|  |  |  |  * @param tail if non-NULL puts here the pointer to the char next | 
					
						
							|  |  |  |  * after the last parsed character | 
					
						
							| 
									
										
										
										
											2009-06-22 22:22:40 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | double av_strtod(const char *numstr, char **tail); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 12:01:28 +00:00
										 |  |  | #endif /* AVUTIL_EVAL_H */
 |