From 4bf8f3029bc8bc1f01874a83b4d48b41ac128252 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sun, 25 May 2008 16:50:08 +0000 Subject: [PATCH] Minor simplification of dec2() Originally committed as revision 13391 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index abaf46f61de..7af1bb0cb20 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -290,17 +290,12 @@ static int eq(const short *in, int *target) static int dec2(signed short *decsp, const int *data, const int *inp, int f, const int *inp2, int a) { - unsigned const int *ptr1,*ptr2; int work[10]; int b = NBLOCKS - a; int x; - unsigned short *sptr = decsp; - - ptr1 = inp; - ptr2 = inp2; for (x=0; x<30; x++) - *(sptr++) = (a * (*ptr1++) + b * (*ptr2++)) >> 2; + decsp[x] = (a * inp[x] + b * inp2[x]) >> 2; if (eq(decsp, work)) return dec1(decsp, data, inp, f); -- 2.39.2