diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 13:19:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 13:19:00 +0100 |
commit | 76f8d3c8d9211daca678747e9521c7ed9e90aba9 (patch) | |
tree | eb69348de94a6b7133c440740fe33ad21dc0640d /libavutil/lls.h | |
parent | fb4b1607561c167b5018641829387447cc8fb51d (diff) | |
parent | 9d4da474f5f40b019cb4cb931c8499deee586174 (diff) | |
download | ffmpeg-76f8d3c8d9211daca678747e9521c7ed9e90aba9.tar.gz |
Merge commit '9d4da474f5f40b019cb4cb931c8499deee586174'
* commit '9d4da474f5f40b019cb4cb931c8499deee586174':
lls: move to the private namespace
Conflicts:
libavutil/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 bd02f3872f..0f02c8d6a5 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 */ |