1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00
Originally committed as revision 14218 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-07-13 20:41:09 +00:00
parent 3819081f75
commit b903a9285e

View File

@ -69,9 +69,7 @@ static void decode(Real288_internal *glob, float gain, int cb_coef)
for (x=0; x < 5; x++)
buffer[x] = codetable[cb_coef][x] * sumsum;
sum = scalar_product_float(buffer, buffer, 5) / 5;
sum = FFMAX(sum, 1);
sum = FFMAX(1, scalar_product_float(buffer, buffer, 5) / 5);
/* shift and store */
memmove(glob->lhist, glob->lhist - 1, 10 * sizeof(*glob->lhist));