OSDN Git Service

Add missing static qualifier from function declaration. Patch by Kenan
authorKenan Gillet <kenan.gillet@gmail.com>
Sat, 4 Apr 2009 16:27:54 +0000 (16:27 +0000)
committerReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>
Sat, 4 Apr 2009 16:27:54 +0000 (16:27 +0000)
Gillet.

Originally committed as revision 18331 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/qcelpdec.c

index 1889f21..32e74a6 100644 (file)
@@ -586,7 +586,7 @@ static void apply_pitch_filters(QCELPContext *q, float *cdn_vector)
  *
  * TIA/EIA/IS-733 2.4.3.3.5
  */
-void lspf2lpc(const float *lspf, float *lpc)
+static void lspf2lpc(const float *lspf, float *lpc)
 {
     double lsf[10];
     double bandwith_expansion_coeff = QCELP_BANDWITH_EXPANSION_COEFF;