From 42d0efb7e61b057d5d334e6786478895d7e0c0db Mon Sep 17 00:00:00 2001 From: ramiro Date: Mon, 30 Mar 2009 03:08:55 +0000 Subject: [PATCH] mlpdec: Simplify &foo[0] to foo and use index (which has just been initialized to MAX_BLOCKSIZE) instead of MAX_BLOCKSIZE, so both copies to/from state data look alike. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18233 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/mlpdec.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index 727d47f84..05818f071 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -661,9 +661,9 @@ static void filter_channel(MLPDecodeContext *m, unsigned int substr, int index = MAX_BLOCKSIZE; int i; - memcpy(&firbuf[MAX_BLOCKSIZE], &fir->state[0], + memcpy(&firbuf[index], fir->state, MAX_FIR_ORDER * sizeof(int32_t)); - memcpy(&iirbuf[MAX_BLOCKSIZE], &iir->state[0], + memcpy(&iirbuf[index], iir->state, MAX_IIR_ORDER * sizeof(int32_t)); for (i = 0; i < s->blocksize; i++) { @@ -692,9 +692,9 @@ static void filter_channel(MLPDecodeContext *m, unsigned int substr, m->sample_buffer[i + s->blockpos][channel] = result; } - memcpy(&fir->state[0], &firbuf[index], + memcpy(fir->state, &firbuf[index], MAX_FIR_ORDER * sizeof(int32_t)); - memcpy(&iir->state[0], &iirbuf[index], + memcpy(iir->state, &iirbuf[index], MAX_IIR_ORDER * sizeof(int32_t)); } -- 2.39.2