Do not reimplement memmove()

Originally committed as revision 14087 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Vitor Sessak 17 years ago
parent 7bd2f502fa
commit a03a6db1af
  1. 6
      libavcodec/ra288.c

@ -54,8 +54,7 @@ static void decode(Real288_internal *glob, float gain, int cb_coef)
double sum, sumsum; double sum, sumsum;
float buffer[5]; float buffer[5];
for (x=35; x >= 0; x--) memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb));
glob->sb[x+5] = glob->sb[x];
for (x=4; x >= 0; x--) for (x=4; x >= 0; x--)
glob->sb[x] = -scalar_product_float(glob->sb + x + 1, glob->pr1, 36); glob->sb[x] = -scalar_product_float(glob->sb + x + 1, glob->pr1, 36);
@ -81,8 +80,7 @@ static void decode(Real288_internal *glob, float gain, int cb_coef)
sum = 1; sum = 1;
/* shift and store */ /* shift and store */
for (x=10; x > 0; x--) memmove(glob->lhist, glob->lhist - 1, 10 * sizeof(*glob->lhist));
glob->lhist[x] = glob->lhist[x-1];
*glob->lhist = glob->history[glob->phase] = 10 * log10(sum) - 32; *glob->lhist = glob->history[glob->phase] = 10 * log10(sum) - 32;

Loading…
Cancel
Save