]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/eval.h
Use correct dequantizer value
[ffmpeg] / libavcodec / eval.h
index 4ce59cca6a2667dafc4fe6b87a2e790881ebad74..71993c56286666549d672a8312a13a3d4c921127 100644 (file)
@@ -29,6 +29,9 @@
 #define AVCODEC_EVAL_H
 
 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
+/**
+ * @deprecated Use ff_eval2 instead
+ */
 double ff_eval(char *s, double *const_value, const char **const_name,
                double (**func1)(void *, double), const char **func1_name,
                double (**func2)(void *, double, double), char **func2_name,
@@ -37,7 +40,7 @@ double ff_eval(char *s, double *const_value, const char **const_name,
 
 /**
  * Parses and evaluates an expression.
- * Note, this is significantly slower then ff_parse_eval()
+ * Note, this is significantly slower than ff_parse_eval()
  * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
  * @param func1 NULL terminated array of function pointers for functions which take 1 argument
  * @param func2 NULL terminated array of function pointers for functions which take 2 arguments