diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2013-06-18 21:30:40 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-06-29 13:23:57 +0200 |
commit | cc6714bb16b1f0716ba43701d47273dbe9657b8b (patch) | |
tree | 9a340d61030b417a1d254852a083323c410c5d37 /libavutil/lls.h | |
parent | 38229362529ed1619d8ebcc81ecde85b23b45895 (diff) | |
download | ffmpeg-cc6714bb16b1f0716ba43701d47273dbe9657b8b.tar.gz |
lpc: remove "decay" argument
We never used the rolling-average mode, and this makes av_update_lls 15% faster.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavutil/lls.h')
-rw-r--r-- | libavutil/lls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lls.h b/libavutil/lls.h index f493076446..9c71cf9e6e 100644 --- a/libavutil/lls.h +++ b/libavutil/lls.h @@ -40,7 +40,7 @@ typedef struct LLSModel { } LLSModel; void avpriv_init_lls(LLSModel *m, int indep_count); -void avpriv_update_lls(LLSModel *m, double *param, double decay); +void avpriv_update_lls(LLSModel *m, double *param); void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order); double avpriv_evaluate_lls(LLSModel *m, double *param, int order); |