Cosmetics: reindent

Originally committed as revision 14649 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-08-06 20:39:28 +00:00
parent 7e05617a5c
commit d70875c81d
1 changed files with 2 additions and 5 deletions

View File

@ -204,11 +204,8 @@ static void do_output_subblock(RA144Context *ractx, const uint16_t *lpc_coefs,
memcpy(ractx->curr_sblock, ractx->curr_sblock + 40,
10*sizeof(*ractx->curr_sblock));
if (ff_acelp_lp_synthesis_filter(
ractx->curr_sblock + 10, lpc_coefs,
block, BLOCKSIZE,
10, 1, 0xfff)
)
if (ff_acelp_lp_synthesis_filter(ractx->curr_sblock + 10, lpc_coefs,
block, BLOCKSIZE, 10, 1, 0xfff))
memset(ractx->curr_sblock, 0, 50*sizeof(*ractx->curr_sblock));
}