mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
add missing 'e->value * '
Originally committed as revision 6819 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
63a547eabc
commit
72523c7a20
@ -175,7 +175,7 @@ static double eval_expr(Parser * p, AVEvalExpr * e) {
|
||||
case e_mul: return e->value * (d * d2);
|
||||
case e_div: return e->value * (d / d2);
|
||||
case e_add: return e->value * (d + d2);
|
||||
case e_last:return d2;
|
||||
case e_last:return e->value * d2;
|
||||
case e_st : return e->value * (p->var[clip(d, 0, VARS-1)]= d2);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user