Commit d7afcdf4 authored by vitor's avatar vitor

Remove useless variable

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13390 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 16747962
...@@ -294,7 +294,6 @@ static int dec2(signed short *decsp, const int *data, const int *inp, ...@@ -294,7 +294,6 @@ static int dec2(signed short *decsp, const int *data, const int *inp,
int work[10]; int work[10];
int b = NBLOCKS - a; int b = NBLOCKS - a;
int x; int x;
int result;
unsigned short *sptr = decsp; unsigned short *sptr = decsp;
ptr1 = inp; ptr1 = inp;
...@@ -303,9 +302,7 @@ static int dec2(signed short *decsp, const int *data, const int *inp, ...@@ -303,9 +302,7 @@ static int dec2(signed short *decsp, const int *data, const int *inp,
for (x=0; x<30; x++) for (x=0; x<30; x++)
*(sptr++) = (a * (*ptr1++) + b * (*ptr2++)) >> 2; *(sptr++) = (a * (*ptr1++) + b * (*ptr2++)) >> 2;
result = eq(decsp, work); if (eq(decsp, work))
if (result == 1)
return dec1(decsp, data, inp, f); return dec1(decsp, data, inp, f);
else else
return rms(work, f); return rms(work, f);
......
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