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

michael subversion
Tue Jun 17 02:09:43 CEST 2008


Author: michael
Date: Tue Jun 17 02:09:42 2008
New Revision: 13793

Log:
Dont inline g726_iterate() the function is big so its inlining will
not help speedwise IMHO.
.o size changes from 70k -> 49k


Modified:
   trunk/libavcodec/g726.c

Modified: trunk/libavcodec/g726.c
==============================================================================
--- trunk/libavcodec/g726.c	(original)
+++ trunk/libavcodec/g726.c	Tue Jun 17 02:09:42 2008
@@ -183,7 +183,7 @@ static inline int16_t inverse_quant(G726
     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;




More information about the ffmpeg-cvslog mailing list