summaryrefslogtreecommitdiff
path: root/libavfilter/vf_settb.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-11-08 14:06:49 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-11-08 14:06:49 +0000
commitd2af7205a12afde34c916ef96ba8c7a26aa0813e (patch)
treef66721788b2a9ad55d83c74cc075761bf9a5eaea /libavfilter/vf_settb.c
parent24de0edbd589b7cb0da51260073a1a28bb6a2619 (diff)
Use hierarchic names convention (prefix them with av_expr) for the
eval API. More grep-friendly and more consistent with the rest of the FFmpeg API. Originally committed as revision 25708 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vf_settb.c')
-rw-r--r--libavfilter/vf_settb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_settb.c b/libavfilter/vf_settb.c
index 1a8724bd22..b5b40bb31c 100644
--- a/libavfilter/vf_settb.c
+++ b/libavfilter/vf_settb.c
@@ -81,7 +81,7 @@ static int config_output_props(AVFilterLink *outlink)
outlink->w = inlink->w;
outlink->h = inlink->h;
- if ((ret = av_parse_and_eval_expr(&res, settb->tb_expr, var_names, settb->var_values,
+ if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
return ret;