Add missing static qualifier from function declaration. Patch by Kenan

Gillet.

Originally committed as revision 18331 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kenan Gillet 2009-04-04 16:27:54 +00:00 committed by Reynaldo H. Verdejo Pinochet
parent 6b4343616c
commit 3c00556f4b
1 changed files with 1 additions and 1 deletions

View 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;