Mercurial > libavcodec.hg
changeset 7419:175c2c4d6887 libavcodec
Remove st1 and st2 variables from context, since they could be just local vars
author | vitor |
---|---|
date | Sat, 26 Jul 2008 15:14:50 +0000 |
parents | 83d005a098b5 |
children | 30e8c4bf08a4 |
files | ra288.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/ra288.c Sat Jul 26 15:10:17 2008 +0000 +++ b/ra288.c Sat Jul 26 15:14:50 2008 +0000 @@ -36,13 +36,11 @@ /** Speech part of the gain autocorrelation (spec: REXP) */ float sp_rec[37]; - float st1[37]; float gain_hist[38]; ///< Log-gain history (spec: SBLG) /** Recursive part of the gain autocorrelation (spec: REXPLG) */ float gain_rec[11]; - float st2[11]; float sb[41]; float lhist[10]; } RA288Context; @@ -199,6 +197,8 @@ { float buffer1[40], temp1[37]; float buffer2[8], temp2[11]; + float st1[37]; + float st2[11]; memcpy(buffer1 , ractx->output + 20, 20*sizeof(*buffer1)); memcpy(buffer1 + 20, ractx->output , 20*sizeof(*buffer1)); @@ -206,8 +206,8 @@ do_hybrid_window(36, 40, 35, buffer1, temp1, ractx->sp_hist, ractx->sp_rec, syn_window); - if (!eval_lpc_coeffs(temp1, ractx->st1, 36)) - colmult(ractx->pr1, ractx->st1, syn_bw_tab, 36); + if (!eval_lpc_coeffs(temp1, st1, 36)) + colmult(ractx->pr1, st1, syn_bw_tab, 36); memcpy(buffer2 , ractx->history + 4, 4*sizeof(*buffer2)); memcpy(buffer2 + 4, ractx->history , 4*sizeof(*buffer2)); @@ -215,8 +215,8 @@ do_hybrid_window(10, 8, 20, buffer2, temp2, ractx->gain_hist, ractx->gain_rec, gain_window); - if (!eval_lpc_coeffs(temp2, ractx->st2, 10)) - colmult(ractx->pr2, ractx->st2, gain_bw_tab, 10); + if (!eval_lpc_coeffs(temp2, st2, 10)) + colmult(ractx->pr2, st2, gain_bw_tab, 10); } /* Decode a block (celp) */