Commit 97238fec authored by vitor's avatar vitor

Rename var

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13606 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 302abde8
...@@ -298,7 +298,7 @@ static int eval_refl(const int16_t *coefs, int *refl) ...@@ -298,7 +298,7 @@ static int eval_refl(const int16_t *coefs, int *refl)
} }
static int dec2(RA144Context *ractx, int16_t *decsp, int block_num, static int dec2(RA144Context *ractx, int16_t *decsp, int block_num,
int copynew, int f) int copynew, int energy)
{ {
int work[10]; int work[10];
int a = block_num + 1; int a = block_num + 1;
...@@ -315,13 +315,13 @@ static int dec2(RA144Context *ractx, int16_t *decsp, int block_num, ...@@ -315,13 +315,13 @@ static int dec2(RA144Context *ractx, int16_t *decsp, int block_num,
// coefficients // coefficients
if (copynew) { if (copynew) {
int_to_int16(decsp, ractx->lpc_coef); int_to_int16(decsp, ractx->lpc_coef);
return rms(ractx->lpc_refl, f); return rms(ractx->lpc_refl, energy);
} else { } else {
int_to_int16(decsp, ractx->lpc_coef_old); int_to_int16(decsp, ractx->lpc_coef_old);
return rms(ractx->lpc_refl_old, f); return rms(ractx->lpc_refl_old, energy);
} }
} else { } else {
return rms(work, f); return rms(work, energy);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment