From 4714776b6af0ff11bbd9130b4c2239c56ea940a9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 18 Jun 2008 21:09:36 +0000 Subject: [PATCH] simplify Originally committed as revision 13807 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/g726.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g726.c b/libavcodec/g726.c index aeb2360d8c..a40521b483 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -244,7 +244,7 @@ static int16_t g726_decode(G726Context* c, int16_t I) c->ap += (0x200 - c->ap) >> 4; /* Update Yu and Yl */ - c->yu = av_clip(c->y + (((c->tbls->W[I] << 5) - c->y) >> 5), 544, 5120); + c->yu = av_clip(c->y + c->tbls->W[I] + ((-c->y)>>5), 544, 5120); c->yl += c->yu + ((-c->yl)>>6); /* Next iteration for Y */