diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-28 08:03:30 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-28 08:03:30 +0000 |
commit | 72523c7a2025cee0858ee03b8bca6b9824e023e3 (patch) | |
tree | eec2de0725df78ea719f843a71c11cee0ba0bb9a | |
parent | 63a547eabc3ec874ca0f732d141eb2b2e95224a8 (diff) | |
download | ffmpeg-72523c7a2025cee0858ee03b8bca6b9824e023e3.tar.gz |
add missing 'e->value * '
Originally committed as revision 6819 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c index 4b88d5acf0..9a86054c8a 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -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); } } |