diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-28 14:30:34 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-08-28 16:04:27 +0200 |
commit | 3d89373fae281053154772d5e3e4370da09d3880 (patch) | |
tree | 6cea499676445874d52f64e53e778bd32385b9fa /libavutil/lls.c | |
parent | 2f9b652e8c646eabef74a6742f0d7d4c9118fd0e (diff) | |
download | ffmpeg-3d89373fae281053154772d5e3e4370da09d3880.tar.gz |
lavu: Drop deprecated private lls functions
Deprecated in 02/2013.
Diffstat (limited to 'libavutil/lls.c')
-rw-r--r-- | libavutil/lls.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libavutil/lls.c b/libavutil/lls.c index f87c2cd153..12989466e6 100644 --- a/libavutil/lls.c +++ b/libavutil/lls.c @@ -121,25 +121,6 @@ av_cold void avpriv_init_lls(LLSModel *m, int indep_count) ff_init_lls_x86(m); } -#if FF_API_LLS_PRIVATE -av_cold void av_init_lls(LLSModel *m, int indep_count) -{ - avpriv_init_lls(m, indep_count); -} -void av_update_lls(LLSModel *m, double *param, double decay) -{ - m->update_lls(m, param); -} -void av_solve_lls(LLSModel *m, double threshold, int min_order) -{ - avpriv_solve_lls(m, threshold, min_order); -} -double av_evaluate_lls(LLSModel *m, double *param, int order) -{ - return m->evaluate_lls(m, param, order); -} -#endif /* FF_API_LLS_PRIVATE */ - #ifdef TEST #include <stdio.h> |