Commit 42a4fd04 authored by vitor's avatar vitor

Do not declare as double a var that only stores a float

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14216 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 517541d0
......@@ -51,8 +51,8 @@ static inline float scalar_product_float(float * v1, float * v2, int size)
static void decode(Real288_internal *glob, float gain, int cb_coef)
{
int x, y;
double sum, sumsum;
float buffer[5];
double sumsum;
float sum, buffer[5];
memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment