Browse Source

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

Originally committed as revision 14216 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
aa64ee30d1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/ra288.c

+ 2
- 2
libavcodec/ra288.c View File

@@ -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));



Loading…
Cancel
Save