summaryrefslogtreecommitdiff
path: root/libavcodec/qcelpdec.c
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>2009-03-09 22:00:35 +0000
committerReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>2009-03-09 22:00:35 +0000
commitd2af5697109519c65dcdd1fb42469a4ba03a3372 (patch)
treea2f108d27a008be2a44e8addaa90cbc8fc62a73d /libavcodec/qcelpdec.c
parent95e83257715818d113724eb92035f4e685d1ec11 (diff)
Cosmetics from Kenan Gillet's 'extract and share weighted_vector_sumf'
patchset. Just a reindent. Originally committed as revision 17917 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qcelpdec.c')
-rw-r--r--libavcodec/qcelpdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qcelpdec.c b/libavcodec/qcelpdec.c
index 9af3467a96..1889f21055 100644
--- a/libavcodec/qcelpdec.c
+++ b/libavcodec/qcelpdec.c
@@ -631,7 +631,7 @@ void interpolate_lpc(QCELPContext *q, const float *curr_lspf, float *lpc,
if(weight != 1.0)
{
ff_weighted_vector_sumf(interpolated_lspf, curr_lspf, q->prev_lspf,
- weight, 1.0 - weight, 10);
+ weight, 1.0 - weight, 10);
lspf2lpc(interpolated_lspf, lpc);
}else if(q->bitrate >= RATE_QUARTER ||
(q->bitrate == I_F_Q && !subframe_num))