~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavutil/eval.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Jonathan Nieder, Reinhard Tartler
  • Date: 2011-05-13 12:31:33 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20110513123133-zqcsj91sf5489y4s
Tags: 4:0.7~beta2-1
[ Jonathan Nieder ]
* only install doc/APIChanges in *-dev and libav-doc packages
* move note on source package lineage to README.Debian
* install NEWS.Debian in libavcodec-dev
* use dpkg source format 3.0 (quilt)
* allow "debian/rules clean" as unprivileged user

[ Reinhard Tartler ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 */
92
92
void av_expr_free(AVExpr *e);
93
93
 
94
 
#if FF_API_OLD_EVAL_NAMES
95
 
/**
96
 
 * @deprecated Deprecated in favor of av_expr_parse_and_eval().
97
 
 */
98
 
attribute_deprecated
99
 
int av_parse_and_eval_expr(double *res, const char *s,
100
 
                           const char * const *const_names, const double *const_values,
101
 
                           const char * const *func1_names, double (* const *funcs1)(void *, double),
102
 
                           const char * const *func2_names, double (* const *funcs2)(void *, double, double),
103
 
                           void *opaque, int log_offset, void *log_ctx);
104
 
 
105
 
/**
106
 
 * @deprecated Deprecated in favor of av_expr_parse().
107
 
 */
108
 
attribute_deprecated
109
 
int av_parse_expr(AVExpr **expr, const char *s,
110
 
                  const char * const *const_names,
111
 
                  const char * const *func1_names, double (* const *funcs1)(void *, double),
112
 
                  const char * const *func2_names, double (* const *funcs2)(void *, double, double),
113
 
                  int log_offset, void *log_ctx);
114
 
/**
115
 
 * @deprecated Deprecated in favor of av_expr_eval().
116
 
 */
117
 
attribute_deprecated
118
 
double av_eval_expr(AVExpr *e, const double *const_values, void *opaque);
119
 
 
120
 
/**
121
 
 * @deprecated Deprecated in favor of av_expr_free().
122
 
 */
123
 
attribute_deprecated
124
 
void av_free_expr(AVExpr *e);
125
 
#endif /* FF_API_OLD_EVAL_NAMES */
126
 
 
127
94
/**
128
95
 * Parse the string in numstr and return its value as a double. If
129
96
 * the string is empty, contains only whitespaces, or does not contain