diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-17 23:02:52 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-17 23:02:52 +0000 |
commit | c52d2da905fc02f5131768a8cbc9d3dfe891e021 (patch) | |
tree | 0107c107bc8ede847669459773fedc3312c6b0ae /libavcodec/ra288.c | |
parent | efa85e5e4595c0c8292b0dd8335a4efd898ed94e (diff) | |
download | ffmpeg-c52d2da905fc02f5131768a8cbc9d3dfe891e021.tar.gz |
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.c | 2 |
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; |