Commit 9b75f986 authored by vitor's avatar vitor

Remove useless intermediate variable

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13576 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3535a24c
......@@ -322,7 +322,7 @@ static int ra144_decode_frame(AVCodecContext * avctx,
static const uint8_t sizes[10] = {6, 5, 5, 4, 4, 3, 3, 3, 3, 2};
unsigned int gbuf1[4];
uint16_t gbuf2[4][30];
unsigned int a, c;
unsigned int c;
int i;
int16_t *data = vdata;
unsigned int energy;
......@@ -344,10 +344,10 @@ static int ra144_decode_frame(AVCodecContext * avctx,
do_voice(ractx->lpc_refl, ractx->lpc_coef);
energy = decodeval[get_bits(&gb, 5) << 1]; // Useless table entries?
a = t_sqrt(energy*ractx->old_energy) >> 12;
gbuf1[0] = dec2(ractx, gbuf2[0], 0, 0, ractx->old_energy);
gbuf1[1] = dec2(ractx, gbuf2[1], 1, energy > ractx->old_energy, a);
gbuf1[1] = dec2(ractx, gbuf2[1], 1, energy > ractx->old_energy,
t_sqrt(energy*ractx->old_energy) >> 12);
gbuf1[2] = dec2(ractx, gbuf2[2], 2, 1, energy);
gbuf1[3] = dec1(gbuf2[3], ractx->lpc_refl, ractx->lpc_coef, 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