avutil: Add av_cold attributes to init functions missing them

This commit is contained in:
Diego Biurrun 2013-04-30 18:31:25 +02:00
parent 20c86571cc
commit 1fda184a85
9 changed files with 20 additions and 11 deletions

View File

@ -18,11 +18,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/attributes.h"
#include "libavutil/float_dsp.h"
#include "cpu.h"
#include "float_dsp_arm.h"
void ff_float_dsp_init_arm(AVFloatDSPContext *fdsp)
av_cold void ff_float_dsp_init_arm(AVFloatDSPContext *fdsp)
{
int cpu_flags = av_get_cpu_flags();

View File

@ -21,6 +21,7 @@
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/float_dsp.h"
#include "float_dsp_arm.h"
@ -45,7 +46,7 @@ void ff_butterflies_float_neon(float *v1, float *v2, int len);
float ff_scalarproduct_float_neon(const float *v1, const float *v2, int len);
void ff_float_dsp_init_neon(AVFloatDSPContext *fdsp)
av_cold void ff_float_dsp_init_neon(AVFloatDSPContext *fdsp)
{
fdsp->vector_fmul = ff_vector_fmul_neon;
fdsp->vector_fmac_scalar = ff_vector_fmac_scalar_neon;

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/attributes.h"
#include "libavutil/float_dsp.h"
#include "cpu.h"
#include "float_dsp_arm.h"
@ -28,7 +29,7 @@ void ff_vector_fmul_vfp(float *dst, const float *src0, const float *src1,
void ff_vector_fmul_reverse_vfp(float *dst, const float *src0,
const float *src1, int len);
void ff_float_dsp_init_vfp(AVFloatDSPContext *fdsp)
av_cold void ff_float_dsp_init_vfp(AVFloatDSPContext *fdsp)
{
int cpu_flags = av_get_cpu_flags();

View File

@ -17,7 +17,7 @@
*/
#include "config.h"
#include "libavutil/attributes.h"
#include "float_dsp.h"
static void vector_fmul_c(float *dst, const float *src0, const float *src1,
@ -112,7 +112,7 @@ float avpriv_scalarproduct_float_c(const float *v1, const float *v2, int len)
return p;
}
void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int bit_exact)
av_cold void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int bit_exact)
{
fdsp->vector_fmul = vector_fmul_c;
fdsp->vector_fmac_scalar = vector_fmac_scalar_c;

View File

@ -20,6 +20,7 @@
#include <string.h>
#include "attributes.h"
#include "hmac.h"
#include "md5.h"
#include "sha.h"
@ -38,7 +39,7 @@ struct AVHMAC {
int keylen;
};
static void sha1_init(void *ctx)
static av_cold void sha1_init(void *ctx)
{
av_sha_init(ctx, 160);
}

View File

@ -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);
}

View File

@ -19,11 +19,12 @@
*/
#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/float_dsp.h"
#include "float_dsp_altivec.h"
void ff_float_dsp_init_ppc(AVFloatDSPContext *fdsp, int bit_exact)
av_cold void ff_float_dsp_init_ppc(AVFloatDSPContext *fdsp, int bit_exact)
{
#if HAVE_ALTIVEC
int mm_flags = av_get_cpu_flags();

View File

@ -22,6 +22,8 @@
*/
#include <string.h>
#include "attributes.h"
#include "avutil.h"
#include "bswap.h"
#include "sha.h"
@ -251,7 +253,7 @@ static void sha256_transform(uint32_t *state, const uint8_t buffer[64])
}
int av_sha_init(AVSHA* ctx, int bits)
av_cold int av_sha_init(AVSHA *ctx, int bits)
{
ctx->digest_len = bits >> 5;
switch (bits) {

View File

@ -18,6 +18,7 @@
#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/float_dsp.h"
#include "cpu.h"
@ -121,7 +122,7 @@ static void vector_fmul_window_sse(float *dst, const float *src0,
}
#endif /* HAVE_6REGS && HAVE_INLINE_ASM */
void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp)
av_cold void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp)
{
int mm_flags = av_get_cpu_flags();