From: Oded Shimon Date: Sat, 28 Oct 2006 08:03:30 +0000 (+0000) Subject: add missing 'e->value * ' X-Git-Tag: v0.5~11268 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=72523c7a2025cee0858ee03b8bca6b9824e023e3;p=coroid%2Flibav_saccubus.git add missing 'e->value * ' Originally committed as revision 6819 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/eval.c b/libavcodec/eval.c index 4b88d5acf..9a86054c8 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); } }