[FFmpeg-cvslog] r13812 - trunk/libavcodec/g726.c

michael subversion
Thu Jun 19 12:29:36 CEST 2008


Author: michael
Date: Thu Jun 19 12:29:36 2008
New Revision: 13812

Log:
Factorize I >> (c->tbls->bits - 1) out.


Modified:
   trunk/libavcodec/g726.c

Modified: trunk/libavcodec/g726.c
==============================================================================
--- trunk/libavcodec/g726.c	(original)
+++ trunk/libavcodec/g726.c	Thu Jun 19 12:29:36 2008
@@ -188,6 +188,7 @@ static int16_t g726_decode(G726Context* 
 {
     int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0;
     Float11 f;
+    int I_sig= I >> (c->tbls->bits - 1);
 
     dq = inverse_quant(c, I);
 
@@ -197,7 +198,7 @@ static int16_t g726_decode(G726Context* 
     thr2 = (ylint > 9) ? 0x1f << 10 : (0x20 + ylfrac) << ylint;
     tr= (c->td == 1 && dq > ((3*thr2)>>2));
 
-    if (I >> (c->tbls->bits - 1))  /* get the sign */
+    if (I_sig)  /* get the sign */
         dq = -dq;
     re_signal = c->se + dq;
 
@@ -230,7 +231,7 @@ static int16_t g726_decode(G726Context* 
     for (i=5; i>0; i--)
         c->dq[i] = c->dq[i-1];
     i2f(dq, &c->dq[0]);
-    c->dq[0].sign = I >> (c->tbls->bits - 1); /* Isn't it crazy ?!?! */
+    c->dq[0].sign = I_sig; /* Isn't it crazy ?!?! */
 
     c->td = c->a[1] < -11776;
 




More information about the ffmpeg-cvslog mailing list