diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-17 00:09:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-17 00:09:42 +0000 |
commit | 170efe1f9d12f2346b9acad1d3288c20f368c9b4 (patch) | |
tree | 110958bfb616b76ec52fc1d20426f85fc1944f25 /libavcodec/g726.c | |
parent | aeaa7c3d00ee71cad77254af1db93a7818e00138 (diff) | |
download | ffmpeg-170efe1f9d12f2346b9acad1d3288c20f368c9b4.tar.gz |
Do not inline g726_iterate() the function is big so its inlining will
not help speedwise IMHO.
.o size changes from 70k -> 49k
Originally committed as revision 13793 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 96b19cab72..20edeea2bd 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -183,7 +183,7 @@ static inline int16_t inverse_quant(G726Context* c, int i) return (dql < 0) ? 0 : ((dqt<<7) >> (14-dex)); } -static inline int16_t g726_iterate(G726Context* c, int16_t I) +static int16_t g726_iterate(G726Context* c, int16_t I) { int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0; Float11 f; |