projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50c52d2
)
Do not shift F[I] twice, it is also clearer and smaller now.
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 19 Jun 2008 11:04:31 +0000
(11:04 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 19 Jun 2008 11:04:31 +0000
(11:04 +0000)
Originally committed as revision 13818 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/g726.c
patch
|
blob
|
history
diff --git
a/libavcodec/g726.c
b/libavcodec/g726.c
index
9d4c87d
..
bace3d0
100644
(file)
--- a/
libavcodec/g726.c
+++ b/
libavcodec/g726.c
@@
-235,8
+235,8
@@
static int16_t g726_decode(G726Context* c, int I)
c->td = c->a[1] < -11776;
/* Update Ap */
- c->dms += (
(c->tbls.F[I]<<9) - c->dms) >> 5
;
- c->dml += (
(c->tbls.F[I]<<11) - c->dml) >> 7
;
+ c->dms += (
c->tbls.F[I]<<4) + ((- c->dms) >> 5)
;
+ c->dml += (
c->tbls.F[I]<<4) + ((- c->dml) >> 7)
;
if (tr)
c->ap = 256;
else {