summaryrefslogtreecommitdiff
path: root/libavutil/lls.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-06-30 10:54:12 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-06-30 10:54:20 +0200
commitd3bd320e63bfbc96d78a673a01d36f25dc6316e7 (patch)
tree5ad449c0b1d2da87cc09dccc38893f299b8a0d7f /libavutil/lls.h
parentff130d7363e0b29ab3e5b46fa3647f236c3c7ba5 (diff)
parentcc6714bb16b1f0716ba43701d47273dbe9657b8b (diff)
downloadffmpeg-d3bd320e63bfbc96d78a673a01d36f25dc6316e7.tar.gz
Merge commit 'cc6714bb16b1f0716ba43701d47273dbe9657b8b'
* commit 'cc6714bb16b1f0716ba43701d47273dbe9657b8b': lpc: remove "decay" argument Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/lls.h')
-rw-r--r--libavutil/lls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lls.h b/libavutil/lls.h
index c785d44421..360be4e747 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);