summaryrefslogtreecommitdiffstats
path: root/libavutil/lls.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/lls.h')
-rw-r--r--libavutil/lls.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavutil/lls.h b/libavutil/lls.h
index bd02f38..0f02c8d 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 */
OpenPOWER on IntegriCloud