summaryrefslogtreecommitdiff
path: root/libavutil/lls.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-28 21:31:26 +0100
committerDiego Biurrun <diego@biurrun.de>2013-03-01 01:44:35 +0100
commit4da950c0ae224b9b8ef952dadf614be2c050023e (patch)
treec50d700c298ecd54b8f7f971230092bf4d8b496d /libavutil/lls.c
parente8c52271c45ec27d783e74238dcfad0c2008731c (diff)
lls: #ifndef --> #if in FF_API_ version guard
Diffstat (limited to 'libavutil/lls.c')
-rw-r--r--libavutil/lls.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavutil/lls.c b/libavutil/lls.c
index a26b3c23d9..464be9abd0 100644
--- a/libavutil/lls.c
+++ b/libavutil/lls.c
@@ -28,6 +28,7 @@
#include <math.h>
#include <string.h>
+#include "version.h"
#include "lls.h"
void avpriv_init_lls(LLSModel *m, int indep_count)
@@ -116,7 +117,7 @@ double avpriv_evaluate_lls(LLSModel *m, double *param, int order)
return out;
}
-#ifndef FF_API_LLS_PRIVATE
+#if FF_API_LLS_PRIVATE
void av_init_lls(LLSModel *m, int indep_count)
{
return avpriv_init_lls(m, indep_count);
@@ -133,7 +134,7 @@ double av_evaluate_lls(LLSModel *m, double *param, int order)
{
return avpriv_evaluate_lls(m, param, order);
}
-#endif
+#endif /* FF_API_LLS_PRIVATE */
#ifdef TEST