[FFmpeg-devel] [PATCH] QCELP fix non static function

Kenan Gillet kenan.gillet
Sat Apr 4 02:10:30 CEST 2009


Hi,

attached is a fix for a missing static in a function declaration.

Kenan
-------------- next part --------------
Index: libavcodec/qcelpdec.c
===================================================================
--- libavcodec/qcelpdec.c	(revision 18292)
+++ libavcodec/qcelpdec.c	(working copy)
@@ -586,7 +613,7 @@
  *
  * 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;



More information about the ffmpeg-devel mailing list