diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-13 20:38:42 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-13 20:38:42 +0000 |
commit | aa64ee30d1bb7e002b0a173e8d30f22462b8a6e5 (patch) | |
tree | 46cf3f61938bd5ab2d7c7ab59aa9b577cd906625 | |
parent | 1894db14873d04c1778592c1146a20fa57af5b11 (diff) | |
download | ffmpeg-aa64ee30d1bb7e002b0a173e8d30f22462b8a6e5.tar.gz |
Do not declare as double a var that only stores a float
Originally committed as revision 14216 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra288.c | 4 |
1 files 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)); |