| 565 | } |
| 566 | |
| 567 | static int parse_pow(AVExpr **e, Parser *p, int *sign) |
| 568 | { |
| 569 | *sign= (*p->s == '+') - (*p->s == '-'); |
| 570 | p->s += *sign&1; |
| 571 | return parse_primary(e, p); |
| 572 | } |
| 573 | |
| 574 | static int parse_dB(AVExpr **e, Parser *p, int *sign) |
| 575 | { |
no test coverage detected