Mercurial > mplayer.hg
changeset 33232:9a5da0f0c0f6
use new eval API names
unbreaks compilation
author | siretart |
---|---|
date | Sun, 24 Apr 2011 08:12:10 +0000 |
parents | e5e8f5bc088c |
children | b64655a3a9bb |
files | libmpcodecs/vf_qp.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vf_qp.c Sun Apr 24 08:08:24 2011 +0000 +++ b/libmpcodecs/vf_qp.c Sun Apr 24 08:12:10 2011 +0000 @@ -69,7 +69,7 @@ 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);