summaryrefslogtreecommitdiff
path: root/libavutil/lls.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-30 18:31:25 +0200
committerDiego Biurrun <diego@biurrun.de>2013-05-04 22:48:05 +0200
commit1fda184a85178cfd7b98d9e308d18e1ded76a511 (patch)
treed1b78c0123ad08511b03f7108f3d7bbb8bd4d71a /libavutil/lls.c
parent20c86571ccc71412781d4a4813e4693e0c42aec6 (diff)
avutil: Add av_cold attributes to init functions missing them
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);
}