1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-04 18:29:59 +02:00

Simplify eval_refl(): return directly when needed instead of storing the return value in a variable

Originally committed as revision 14640 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-08-06 05:24:21 +00:00
parent 2f1cad0e58
commit c0f0b34bba

View File

@ -231,7 +231,6 @@ static void int_to_int16(int16_t *out, const int *inp)
*/
static int eval_refl(int *refl, const int16_t *coefs, RA144Context *ractx)
{
int retval = 0;
int b, c, i;
unsigned int u;
int buffer1[10];
@ -267,11 +266,11 @@ static int eval_refl(int *refl, const int16_t *coefs, RA144Context *ractx)
refl[c] = u = bp1[c];
if ((u + 0x1000) > 0x1fff)
retval = 1;
return 1;
FFSWAP(int *, bp1, bp2);
}
return retval;
return 0;
}
static int interp(RA144Context *ractx, int16_t *out, int block_num,