diff options
author | Kenan Gillet <kenan.gillet@gmail.com> | 2009-04-04 16:27:54 +0000 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2009-04-04 16:27:54 +0000 |
commit | 3c00556f4be2694d530cf3de741cdae0f1069678 (patch) | |
tree | e9b534e8f7738be3dd10b1104284caaca7885087 /libavcodec | |
parent | 6b4343616cf425e803b3cba2d898b611de3bbf02 (diff) | |
download | ffmpeg-3c00556f4be2694d530cf3de741cdae0f1069678.tar.gz |
Add missing static qualifier from function declaration. Patch by Kenan
Gillet.
Originally committed as revision 18331 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/qcelpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qcelpdec.c b/libavcodec/qcelpdec.c index 1889f21055..32e74a6a7d 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; |