Mercurial > libavcodec.hg
changeset 7365:031d4866b192 libavcodec
Rename co() function to the much more descriptive name of
do_hybrid_window(). Also change a misleading and wrong comment.
author | vitor |
---|---|
date | Thu, 24 Jul 2008 03:23:51 +0000 |
parents | 907d3376da93 |
children | d74804a3a18b |
files | ra288.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ra288.c Thu Jul 24 03:22:19 2008 +0000 +++ b/ra288.c Thu Jul 24 03:23:51 2008 +0000 @@ -137,7 +137,7 @@ } -static void co(int n, int i, int j, const float *in, float *out, float *st1, +static void do_hybrid_window(int n, int i, int j, const float *in, float *out, float *st1, float *st2, const float *table) { unsigned int x; @@ -158,7 +158,9 @@ st2[x] = st2[x] * 0.5625 + buffer1[x]; out[x] = st2[x] + buffer2[x]; } - *out *= 257./256.; /* to prevent clipping */ + + /* Multiply by the white noise correcting factor (WNCF) */ + *out *= 257./256.; } static void update(Real288_internal *glob) @@ -169,7 +171,7 @@ memcpy(buffer1 , glob->output + 20, 20*sizeof(*buffer1)); memcpy(buffer1 + 20, glob->output , 20*sizeof(*buffer1)); - co(36, 40, 35, buffer1, temp1, glob->st1a, glob->st1b, table1); + do_hybrid_window(36, 40, 35, buffer1, temp1, glob->st1a, glob->st1b, table1); if (pred(temp1, glob->st1, 36)) colmult(glob->pr1, glob->st1, table1a, 36); @@ -177,7 +179,7 @@ memcpy(buffer2 , glob->history + 4, 4*sizeof(*buffer2)); memcpy(buffer2 + 4, glob->history , 4*sizeof(*buffer2)); - co(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2); + do_hybrid_window(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2); if (pred(temp2, glob->st2, 10)) colmult(glob->pr2, glob->st2, table2a, 10);