diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-01-04 19:25:44 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-01-04 19:25:44 +0000 |
commit | 846b2316433d69acbd5fb9264112fb57675a7166 (patch) | |
tree | 5470380e600c6ee744ff52a5bb4d508b0843bacc /libavcodec | |
parent | 7f6a384a4f59f06ecb4907b6c65bf36c31502b79 (diff) | |
download | ffmpeg-846b2316433d69acbd5fb9264112fb57675a7166.tar.gz |
Add missing "static" qualifier
Originally committed as revision 21018 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 16f9ae0be9..745d9690f8 100644 --- a/libavcodec/qcelpdec.c +++ b/libavcodec/qcelpdec.c @@ -598,7 +598,7 @@ static void lspf2lpc(const float *lspf, float *lpc) * @param lpc float vector for the resulting LPC * @param subframe_num frame number in decoded stream */ -void interpolate_lpc(QCELPContext *q, const float *curr_lspf, float *lpc, +static void interpolate_lpc(QCELPContext *q, const float *curr_lspf, float *lpc, const int subframe_num) { float interpolated_lspf[10]; |