Mercurial > libavcodec.hg
changeset 6970:6b666c5587e0 libavcodec
Rename var
author | vitor |
---|---|
date | Sun, 01 Jun 2008 19:35:04 +0000 |
parents | 1f0026d344a9 |
children | 701306df51ab |
files | ra144.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ra144.c Sun Jun 01 19:33:17 2008 +0000 +++ b/ra144.c Sun Jun 01 19:35:04 2008 +0000 @@ -298,7 +298,7 @@ } static int dec2(RA144Context *ractx, int16_t *decsp, int block_num, - int copynew, int f) + int copynew, int energy) { int work[10]; int a = block_num + 1; @@ -315,13 +315,13 @@ // coefficients if (copynew) { int_to_int16(decsp, ractx->lpc_coef); - return rms(ractx->lpc_refl, f); + return rms(ractx->lpc_refl, energy); } else { int_to_int16(decsp, ractx->lpc_coef_old); - return rms(ractx->lpc_refl_old, f); + return rms(ractx->lpc_refl_old, energy); } } else { - return rms(work, f); + return rms(work, energy); } }