From 1fda184a85178cfd7b98d9e308d18e1ded76a511 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 30 Apr 2013 18:31:25 +0200 Subject: avutil: Add av_cold attributes to init functions missing them --- libavutil/lls.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libavutil/lls.c') 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 #include +#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); } -- cgit v1.2.3