mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Simplify do_output_subblock(): Remove a unneeded memcpy
Originally committed as revision 14648 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
99423fa0ee
commit
7e05617a5c
@ -203,12 +203,10 @@ static void do_output_subblock(RA144Context *ractx, const uint16_t *lpc_coefs,
|
|||||||
|
|
||||||
memcpy(ractx->curr_sblock, ractx->curr_sblock + 40,
|
memcpy(ractx->curr_sblock, ractx->curr_sblock + 40,
|
||||||
10*sizeof(*ractx->curr_sblock));
|
10*sizeof(*ractx->curr_sblock));
|
||||||
memcpy(ractx->curr_sblock + 10, block,
|
|
||||||
BLOCKSIZE*sizeof(*ractx->curr_sblock));
|
|
||||||
|
|
||||||
if (ff_acelp_lp_synthesis_filter(
|
if (ff_acelp_lp_synthesis_filter(
|
||||||
ractx->curr_sblock + 10, lpc_coefs,
|
ractx->curr_sblock + 10, lpc_coefs,
|
||||||
ractx->curr_sblock + 10, BLOCKSIZE,
|
block, BLOCKSIZE,
|
||||||
10, 1, 0xfff)
|
10, 1, 0xfff)
|
||||||
)
|
)
|
||||||
memset(ractx->curr_sblock, 0, 50*sizeof(*ractx->curr_sblock));
|
memset(ractx->curr_sblock, 0, 50*sizeof(*ractx->curr_sblock));
|
||||||
|
Loading…
Reference in New Issue
Block a user