summaryrefslogtreecommitdiff
path: root/libavutil/lls.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-05 12:53:42 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-05 12:53:50 +0200
commit3c200aa6930dfafdc4abacc49084503fa09dbbf8 (patch)
treee06ead278ba9c14087718374be6be0dab5fb3285 /libavutil/lls.c
parente7f8493fd8c9f1d0f7618dc068b5cb38e0395574 (diff)
parent1fda184a85178cfd7b98d9e308d18e1ded76a511 (diff)
Merge commit '1fda184a85178cfd7b98d9e308d18e1ded76a511'
* commit '1fda184a85178cfd7b98d9e308d18e1ded76a511': avutil: Add av_cold attributes to init functions missing them Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 a27c7ae8ba..dd6442a881 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);
}