diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-08-06 20:39:28 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-08-06 20:39:28 +0000 |
commit | d70875c81dbc60d7f2a38ab4f2416366c16aa3b6 (patch) | |
tree | e9d5f351e8359c65acbf36182a0fc84afedefdaa /libavcodec/ra144.c | |
parent | 7e05617a5c853aa878269fa982de83f86e527983 (diff) | |
download | ffmpeg-d70875c81dbc60d7f2a38ab4f2416366c16aa3b6.tar.gz |
Cosmetics: reindent
Originally committed as revision 14649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r-- | libavcodec/ra144.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 357d5b5bbc..6a8349492b 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -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)); } |