From fc234250b400045e883825a9c15f7ecdb987e1e0 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Thu, 19 Jun 2008 10:38:20 +0000
Subject: [PATCH] Does not need to be int16.

Originally committed as revision 13814 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/g726.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/g726.c b/libavcodec/g726.c
index d5be2f573a7..efe6152c062 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;
-- 
GitLab