summaryrefslogtreecommitdiff
path: root/libavutil/lls.c
diff options
context:
space:
mode:
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 bbcab6cf9f..246189bdf7 100644
--- a/libavutil/lls.c
+++ b/libavutil/lls.c
@@ -28,10 +28,11 @@
#include <math.h>
#include <string.h>
+#include "attributes.h"
#include "version.h"
#include "lls.h"
-void avpriv_init_lls(LLSModel *m, int indep_count)
+av_cold void avpriv_init_lls(LLSModel *m, int indep_count)
{
memset(m, 0, sizeof(LLSModel));
m->indep_count = indep_count;
@@ -118,7 +119,7 @@ double avpriv_evaluate_lls(LLSModel *m, double *param, int order)
}
#if FF_API_LLS_PRIVATE
-void av_init_lls(LLSModel *m, int indep_count)
+av_cold void av_init_lls(LLSModel *m, int indep_count)
{
avpriv_init_lls(m, indep_count);
}