From: Kenan Gillet Date: Sat, 4 Apr 2009 16:27:54 +0000 (+0000) Subject: Add missing static qualifier from function declaration. Patch by Kenan X-Git-Tag: v0.6~4935 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c00556f4be2694d530cf3de741cdae0f1069678;p=platform%2Fupstream%2Flibav.git Add missing static qualifier from function declaration. Patch by Kenan Gillet. Originally committed as revision 18331 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/qcelpdec.c b/libavcodec/qcelpdec.c index 1889f21..32e74a6 100644 --- a/libavcodec/qcelpdec.c +++ b/libavcodec/qcelpdec.c @@ -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;