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:
parent
efa85e5e45
commit
c52d2da905
@ -97,7 +97,7 @@ static void colmult(float *tgt, const float *m1, const float *m2, int n)
|
|||||||
*(tgt++) = (*(m1++)) * (*(m2++));
|
*(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;
|
int x, y;
|
||||||
double f0, f1, f2;
|
double f0, f1, f2;
|
||||||
|
Loading…
Reference in New Issue
Block a user