From c52d2da905fc02f5131768a8cbc9d3dfe891e021 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 17 Jul 2008 23:02:52 +0000 Subject: [PATCH] Declare parameters of pred() that could be const as such Originally committed as revision 14270 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra288.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 799d349e77..28dca658c8 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -97,7 +97,7 @@ static void colmult(float *tgt, const float *m1, const float *m2, int n) *(tgt++) = (*(m1++)) * (*(m2++)); } -static int pred(float *in, float *tgt, int n) +static int pred(const float *in, float *tgt, int n) { int x, y; double f0, f1, f2;