# HG changeset patch # User vitor # Date 1217213587 0 # Node ID 158d1acfe3bf7ddb810d2984d0b8d01b9eb39d48 # Parent da24b77f46f66b96868ec1bcc194393061c1e7e1 Remove RA288Context.output buffer. This buffer is just RA288Context.sb backwards (output[i] == sb[N-i], where N is the buffer length). This makes the code slower, this will be fixed in my next commit. diff -r da24b77f46f6 -r 158d1acfe3bf ra288.c --- a/ra288.c Sun Jul 27 22:22:51 2008 +0000 +++ b/ra288.c Mon Jul 28 02:53:07 2008 +0000 @@ -25,7 +25,6 @@ #include "ra288.h" typedef struct { - float output[40]; float sp_lpc[36]; ///< LPC coefficients for speech data (spec: A) float gain_lpc[10]; ///< LPC coefficients for gain (spec: GB) int phase; @@ -101,7 +100,7 @@ /* output */ for (x=0; x < 5; x++) { - ractx->output[ractx->phase*5+x] = ractx->sb[4-x] = + ractx->sb[4-x] = av_clipf(ractx->sb[4-x] + buffer[x], -4095, 4095); } } @@ -200,12 +199,16 @@ float temp1[37]; // RTMP in the spec float temp2[11]; // GPTPMP in the spec float history[8]; + float speech[40]; int i; for (i=0 ; i < 8; i++) history[i] = ractx->lhist[7-i]; - do_hybrid_window(36, 40, 35, ractx->output, temp1, ractx->sp_hist, + for (i=0; i < 40; i++) + speech[i] = ractx->sb[39-i]; + + do_hybrid_window(36, 40, 35, speech, temp1, ractx->sp_hist, ractx->sp_rec, syn_window); if (!eval_lpc_coeffs(temp1, ractx->sp_lpc, 36)) @@ -244,7 +247,7 @@ decode(ractx, gain, cb_coef); for (y=0; y < 5; y++) - *(out++) = 8 * ractx->output[ractx->phase*5 + y]; + *(out++) = 8 * ractx->sb[4 - y]; if (ractx->phase == 7) backward_filter(ractx);