diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-19 10:38:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-19 10:38:20 +0000 |
commit | fc234250b400045e883825a9c15f7ecdb987e1e0 (patch) | |
tree | a9822218f0d68ad0114681a7a2e4946c340a6325 /libavcodec/g726.c | |
parent | e9174641556b3ca38c56b9621e855cf636cdf12f (diff) | |
download | ffmpeg-fc234250b400045e883825a9c15f7ecdb987e1e0.tar.gz |
Does not need to be int16.
Originally committed as revision 13814 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/g726.c')
-rw-r--r-- | libavcodec/g726.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g726.c b/libavcodec/g726.c index d5be2f573a..efe6152c06 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -184,7 +184,7 @@ static inline int16_t inverse_quant(G726Context* c, int i) 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; Float11 f; |