1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Declare parameters of pred() that could be const as such

Originally committed as revision 14270 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-07-17 23:02:52 +00:00
parent efa85e5e45
commit c52d2da905

View File

@ -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;