diff ra288.c @ 7268:7e51fc7805ac libavcodec

Do not declare as double a var that only stores a float
author vitor
date Sun, 13 Jul 2008 20:38:42 +0000
parents 4a4a8563de98
children 04ecb6594999
line wrap: on
line diff
--- a/ra288.c	Sun Jul 13 20:36:32 2008 +0000
+++ b/ra288.c	Sun Jul 13 20:38:42 2008 +0000
@@ -51,8 +51,8 @@
 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));