diff options
author | Mohamed Naufal Basheer <naufal11@gmail.com> | 2011-03-17 23:56:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-29 21:43:52 +0200 |
commit | bcc67dffa0e40602f2ce3240e831db173fe939a1 (patch) | |
tree | 32865bcfde10c4556f7faf2cb1bf5adcb5b6f364 /libavcodec/ra144.c | |
parent | ecf31a68fd0d30178d7b6e1b663d5c40b88c4551 (diff) | |
download | ffmpeg-bcc67dffa0e40602f2ce3240e831db173fe939a1.tar.gz |
Add a shift parameter to celp_lp_synthesis_filter for reuse by the G.723.1 decoder
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r-- | libavcodec/ra144.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 9baa06850f..3f1e6f7b43 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -1715,6 +1715,6 @@ void ff_subblock_synthesis(RA144Context *ractx, const uint16_t *lpc_coefs, 10*sizeof(*ractx->curr_sblock)); if (ff_celp_lp_synthesis_filter(ractx->curr_sblock + 10, lpc_coefs, - block, BLOCKSIZE, 10, 1, 0xfff)) + block, BLOCKSIZE, 10, 1, 0, 0xfff)) memset(ractx->curr_sblock, 0, 50*sizeof(*ractx->curr_sblock)); } |