You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
simplify
Originally committed as revision 13807 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user