mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Do not declare as double a var that only stores a float
Originally committed as revision 14216 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1894db1487
commit
aa64ee30d1
@ -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)
|
static void decode(Real288_internal *glob, float gain, int cb_coef)
|
||||||
{
|
{
|
||||||
int x, y;
|
int x, y;
|
||||||
double sum, sumsum;
|
double sumsum;
|
||||||
float buffer[5];
|
float sum, buffer[5];
|
||||||
|
|
||||||
memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb));
|
memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user