projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efa85e5
)
Declare parameters of pred() that could be const as such
author
Vitor Sessak
<vitor1001@gmail.com>
Thu, 17 Jul 2008 23:02:52 +0000
(23:02 +0000)
committer
Vitor Sessak
<vitor1001@gmail.com>
Thu, 17 Jul 2008 23:02:52 +0000
(23:02 +0000)
Originally committed as revision 14270 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/ra288.c
patch
|
blob
|
history
diff --git
a/libavcodec/ra288.c
b/libavcodec/ra288.c
index
799d349
..
28dca65
100644
(file)
--- 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;