From aa64ee30d1bb7e002b0a173e8d30f22462b8a6e5 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sun, 13 Jul 2008 20:38:42 +0000 Subject: [PATCH] Do not declare as double a var that only stores a float Originally committed as revision 14216 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra288.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 35d21f4277..cd7d624050 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -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));