X-Git-Url: https://git.piment-noir.org/?p=deb_ffmpeg.git;a=blobdiff_plain;f=ffmpeg%2Flibavutil%2Flls.c;fp=ffmpeg%2Flibavutil%2Flls.c;h=f77043bc4a6f2fd6a7b2c3e340f2a3c128b87dba;hp=06fe4238ed36f4efd69910a107608802341a1ae4;hb=f6fa7814ccfe3e76514b36cf04f5cd3cb657c8cf;hpb=2ba45a602cbfa7b771effba9b11bb4245c21bc00 diff --git a/ffmpeg/libavutil/lls.c b/ffmpeg/libavutil/lls.c index 06fe423..f77043b 100644 --- a/ffmpeg/libavutil/lls.c +++ b/ffmpeg/libavutil/lls.c @@ -32,7 +32,7 @@ #include "version.h" #include "lls.h" -static void update_lls(LLSModel *m, double *var) +static void update_lls(LLSModel *m, const double *var) { int i, j; @@ -100,7 +100,7 @@ void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order) } } -static double evaluate_lls(LLSModel *m, double *param, int order) +static double evaluate_lls(LLSModel *m, const double *param, int order) { int i; double out = 0;