summaryrefslogtreecommitdiff
path: root/libavcodec/ra288.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-07-17 23:02:52 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-07-17 23:02:52 +0000
commitc52d2da905fc02f5131768a8cbc9d3dfe891e021 (patch)
tree0107c107bc8ede847669459773fedc3312c6b0ae /libavcodec/ra288.c
parentefa85e5e4595c0c8292b0dd8335a4efd898ed94e (diff)
Declare parameters of pred() that could be const as such
Originally committed as revision 14270 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r--libavcodec/ra288.c2
1 files changed, 1 insertions, 1 deletions
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;