You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Remove useless variable
Originally committed as revision 13390 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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,
|
|||||||
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);
|
||||||
|
Reference in New Issue
Block a user