Mercurial > libavcodec.hg
comparison eval.h @ 11601:29fda2500178 libavcodec
Avoid the use of the symbol ff_expr_s for referencing AVExpr.
This way we have to deal only with struct AVExpr and AVExpr, which is
slightly less confusing as the association between the two symbols is
obvious.
| author | stefano |
|---|---|
| date | Sun, 11 Apr 2010 18:44:51 +0000 |
| parents | 192399381906 |
| children | da95280256b4 |
comparison
equal
deleted
inserted
replaced
| 11600:2b35577e49db | 11601:29fda2500178 |
|---|---|
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef AVCODEC_EVAL_H | 28 #ifndef AVCODEC_EVAL_H |
| 29 #define AVCODEC_EVAL_H | 29 #define AVCODEC_EVAL_H |
| 30 | 30 |
| 31 typedef struct ff_expr_s AVExpr; | 31 typedef struct AVExpr AVExpr; |
| 32 | 32 |
| 33 /** | 33 /** |
| 34 * Parses and evaluates an expression. | 34 * Parses and evaluates an expression. |
| 35 * Note, this is significantly slower than ff_parse_eval() | 35 * Note, this is significantly slower than ff_parse_eval() |
| 36 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" | 36 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" |
