You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
Do not shift F[I] twice, it is also clearer and smaller now.
Originally committed as revision 13818 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -235,8 +235,8 @@ static int16_t g726_decode(G726Context* c, int I)
|
|||||||
c->td = c->a[1] < -11776;
|
c->td = c->a[1] < -11776;
|
||||||
|
|
||||||
/* Update Ap */
|
/* Update Ap */
|
||||||
c->dms += ((c->tbls.F[I]<<9) - c->dms) >> 5;
|
c->dms += (c->tbls.F[I]<<4) + ((- c->dms) >> 5);
|
||||||
c->dml += ((c->tbls.F[I]<<11) - c->dml) >> 7;
|
c->dml += (c->tbls.F[I]<<4) + ((- c->dml) >> 7);
|
||||||
if (tr)
|
if (tr)
|
||||||
c->ap = 256;
|
c->ap = 256;
|
||||||
else {
|
else {
|
||||||
|
Reference in New Issue
Block a user