Commit fc234250 authored by Michael Niedermayer's avatar Michael Niedermayer

Does not need to be int16.

Originally committed as revision 13814 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e9174641
...@@ -184,7 +184,7 @@ static inline int16_t inverse_quant(G726Context* c, int i) ...@@ -184,7 +184,7 @@ static inline int16_t inverse_quant(G726Context* c, int i)
return (dql < 0) ? 0 : ((dqt<<dex) >> 7); return (dql < 0) ? 0 : ((dqt<<dex) >> 7);
} }
static int16_t g726_decode(G726Context* c, int16_t I) static int16_t g726_decode(G726Context* c, int I)
{ {
int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0; int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0;
Float11 f; Float11 f;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment