diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2008-12-04 01:38:12 +0000 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@opendot.cl> | 2008-12-04 01:38:12 +0000 |
commit | b12c76277bdb2e8637a3ddbbcdf0625152557f7d (patch) | |
tree | 61c1351e808a360f256d1435ed401580bfeacf2a /libavcodec/qcelpdec.c | |
parent | ecfb51d1c29e03e6ae256c2bc1e5d835fcf0d012 (diff) | |
download | ffmpeg-b12c76277bdb2e8637a3ddbbcdf0625152557f7d.tar.gz |
Removes misleading const qualifier, gets rid of two compiler warnings
Originally committed as revision 15997 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qcelpdec.c')
-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 8d7f08dae9..9546bec323 100644 --- a/libavcodec/qcelpdec.c +++ b/libavcodec/qcelpdec.c @@ -336,7 +336,7 @@ static int codebook_sanity_check_for_rate_quarter(const uint8_t *cbgain) * @param gain array holding the 4 pitch subframe gain values * @param cdn_vector array for the generated scaled codebook vector */ -static void compute_svector(const QCELPContext *q, const float *gain, +static void compute_svector(QCELPContext *q, const float *gain, float *cdn_vector) { int i, j, k; |