Browse Source

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

Originally committed as revision 14270 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
c52d2da905
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ra288.c

+ 1
- 1
libavcodec/ra288.c 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;


Loading…
Cancel
Save