[FFmpeg-cvslog] lavu: Drop deprecated private lls functions
Vittorio Giovara
git at videolan.org
Sat Sep 5 17:48:58 CEST 2015
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Jul 28 14:30:34 2015 +0100| [3d89373fae281053154772d5e3e4370da09d3880] | committer: Vittorio Giovara
lavu: Drop deprecated private lls functions
Deprecated in 02/2013.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3d89373fae281053154772d5e3e4370da09d3880
---
libavutil/lls.c | 19 -------------------
libavutil/lls.h | 7 -------
libavutil/version.h | 3 ---
3 files changed, 29 deletions(-)
diff --git a/libavutil/lls.c b/libavutil/lls.c
index f87c2cd..1298946 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>
diff --git a/libavutil/lls.h b/libavutil/lls.h
index 27c0d5e..9b2b3a4 100644
--- a/libavutil/lls.h
+++ b/libavutil/lls.h
@@ -61,11 +61,4 @@ void avpriv_init_lls(LLSModel *m, int indep_count);
void ff_init_lls_x86(LLSModel *m);
void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order);
-#if 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 /* FF_API_LLS_PRIVATE */
-
#endif /* AVUTIL_LLS_H */
diff --git a/libavutil/version.h b/libavutil/version.h
index 3b28b83..02a9563 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -78,9 +78,6 @@
* @{
*/
-#ifndef FF_API_LLS_PRIVATE
-#define FF_API_LLS_PRIVATE (LIBAVUTIL_VERSION_MAJOR < 55)
-#endif
#ifndef FF_API_VDPAU
#define FF_API_VDPAU (LIBAVUTIL_VERSION_MAJOR < 55)
#endif
More information about the ffmpeg-cvslog
mailing list