diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-02-25 08:06:59 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-02-28 17:39:24 +0100 |
commit | 9d4da474f5f40b019cb4cb931c8499deee586174 (patch) | |
tree | 0bee397cd1564f1a877e7416ccad51189365e56c /libavutil/lls.h | |
parent | 7ac6d2423e9bf0f40c67be9a0ca7600b516b0282 (diff) | |
download | ffmpeg-9d4da474f5f40b019cb4cb931c8499deee586174.tar.gz |
lls: move to the private namespace
The functions are private.
Diffstat (limited to 'libavutil/lls.h')
-rw-r--r-- | libavutil/lls.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavutil/lls.h b/libavutil/lls.h index 5c51b7446f..4b197985a8 100644 --- a/libavutil/lls.h +++ b/libavutil/lls.h @@ -37,9 +37,15 @@ typedef struct LLSModel { int indep_count; } LLSModel; +void avpriv_init_lls(LLSModel *m, int indep_count); +void avpriv_update_lls(LLSModel *m, double *param, double decay); +void avpriv_solve_lls(LLSModel *m, double threshold, int min_order); +double avpriv_evaluate_lls(LLSModel *m, double *param, int order); + +#ifndef FF_API_LLS_PRIVATE void av_init_lls(LLSModel *m, int indep_count); void av_update_lls(LLSModel *m, double *param, double decay); void av_solve_lls(LLSModel *m, double threshold, int min_order); double av_evaluate_lls(LLSModel *m, double *param, int order); - +#endif #endif /* AVUTIL_LLS_H */ |