Searched refs:x_pexpr (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | vf_crop.c | 90 AVExpr *x_pexpr, *y_pexpr; /* parsed expressions for x and y */ member 109 av_expr_free(s->x_pexpr); in uninit() 110 s->x_pexpr = NULL; in uninit() 194 av_expr_free(s->x_pexpr); in config_input() 196 s->x_pexpr = s->y_pexpr = NULL; in config_input() 197 if ((ret = av_expr_parse(&s->x_pexpr, s->x_expr, var_names, in config_input() 266 s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL); in filter_frame() 269 s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL); in filter_frame()
|
D | vf_delogo.c | 201 AVExpr *x_pexpr, *y_pexpr, *w_pexpr, *h_pexpr; member 222 av_expr_free(s->x_pexpr); s->x_pexpr = NULL; in uninit() 248 if ((ret = set_expr(&s->x_pexpr, s->x_expr, "x", ctx)) < 0 || in init() 254 s->x = av_expr_eval(s->x_pexpr, s->var_values, s); in init() 311 s->x = av_expr_eval(s->x_pexpr, s->var_values, s); in filter_frame()
|
D | vf_overlay.h | 78 AVExpr *x_pexpr, *y_pexpr; member
|
D | vf_drawtext.c | 189 AVExpr *x_pexpr, *y_pexpr; ///< parsed expressions for x and y member 808 av_expr_free(s->x_pexpr); in uninit() 813 s->x_pexpr = s->y_pexpr = s->a_pexpr = s->fontsize_pexpr = NULL; in uninit() 855 av_expr_free(s->x_pexpr); in config_input() 858 s->x_pexpr = s->y_pexpr = s->a_pexpr = NULL; in config_input() 860 if ((ret = av_expr_parse(&s->x_pexpr, expr = s->x_expr, var_names, in config_input() 1443 s->x = s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, &s->prng); in draw_text() 1446 s->x = s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, &s->prng); in draw_text()
|
D | vf_overlay.c | 86 av_expr_free(s->x_pexpr); s->x_pexpr = NULL; in uninit() 101 s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL); in eval_expr() 104 s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL); in eval_expr() 137 ret = set_expr(&s->x_pexpr, args, cmd, ctx); in process_command() 295 if ((ret = set_expr(&s->x_pexpr, s->x_expr, "x", ctx)) < 0 || in config_input_overlay()
|