[MPlayer-cvslog] r33319 - trunk/libmpcodecs/vf_qp.c

siretart subversion at mplayerhq.hu
Sun Apr 24 10:12:10 CEST 2011


Author: siretart
Date: Sun Apr 24 10:12:10 2011
New Revision: 33319

Log:
use new eval API names

unbreaks compilation

Modified:
   trunk/libmpcodecs/vf_qp.c

Modified: trunk/libmpcodecs/vf_qp.c
==============================================================================
--- trunk/libmpcodecs/vf_qp.c	Sun Apr 24 10:08:24 2011	(r33318)
+++ trunk/libmpcodecs/vf_qp.c	Sun Apr 24 10:12:10 2011	(r33319)
@@ -69,7 +69,7 @@ static int config(struct vf_instance *vf
             double temp_val;
             int res;
 
-            res= av_parse_and_eval_expr(&temp_val, vf->priv->eq, const_names, const_values, NULL, NULL, NULL, NULL, NULL, 0, NULL);
+            res= av_expr_parse_and_eval(&temp_val, vf->priv->eq, const_names, const_values, NULL, NULL, NULL, NULL, NULL, 0, NULL);
 
             if (res < 0){
                 mp_msg(MSGT_VFILTER, MSGL_ERR, "qp: Error evaluating \"%s\" \n", vf->priv->eq);


More information about the MPlayer-cvslog mailing list