MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / parse_subexpr

Function parse_subexpr

libavcodec/eval.c:326–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324}
325
326static AVExpr * parse_subexpr(Parser *p) {
327 AVExpr * e = parse_term(p);
328 while(*p->s == '+' || *p->s == '-') {
329 e= new_eval_expr(e_add, 1, e, parse_term(p));
330 if (!e)
331 return NULL;
332 };
333
334 return e;
335}
336
337static AVExpr * parse_expr(Parser *p) {
338 AVExpr * e;

Callers 1

parse_exprFunction · 0.85

Calls 2

parse_termFunction · 0.85
new_eval_exprFunction · 0.85

Tested by

no test coverage detected