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

michael subversion
Thu Jun 19 12:38:20 CEST 2008


Author: michael
Date: Thu Jun 19 12:38:20 2008
New Revision: 13814

Log:
Does not need to be int16.


Modified:
   trunk/libavcodec/g726.c

Modified: trunk/libavcodec/g726.c
==============================================================================
--- trunk/libavcodec/g726.c	(original)
+++ trunk/libavcodec/g726.c	Thu Jun 19 12:38:20 2008
@@ -184,7 +184,7 @@ static inline int16_t inverse_quant(G726
     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;




More information about the ffmpeg-cvslog mailing list