[FFmpeg-cvslog] r14216 - trunk/libavcodec/ra288.c

vitor subversion
Sun Jul 13 22:38:43 CEST 2008


Author: vitor
Date: Sun Jul 13 22:38:42 2008
New Revision: 14216

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

Modified:
   trunk/libavcodec/ra288.c

Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c	(original)
+++ trunk/libavcodec/ra288.c	Sun Jul 13 22:38:42 2008
@@ -51,8 +51,8 @@ static inline float scalar_product_float
 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));
 




More information about the ffmpeg-cvslog mailing list