From 6fee1b90ce3bf4fbdfde7016e0890057c9000487 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 1 Feb 2013 10:31:59 +0100 Subject: avcodec: Add av_cold attributes to init functions missing them --- libavcodec/h264pred.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libavcodec/h264pred.c') diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 6825cf27c3..2c991fd414 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -25,6 +25,7 @@ * @author Michael Niedermayer */ +#include "libavutil/attributes.h" #include "dsputil.h" #include "h264pred.h" @@ -397,8 +398,9 @@ static void pred8x8_tm_vp8_c(uint8_t *src, ptrdiff_t stride) /** * Set the intra prediction function pointers. */ -void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, - const int chroma_format_idc) +av_cold void ff_h264_pred_init(H264PredContext *h, int codec_id, + const int bit_depth, + const int chroma_format_idc) { #undef FUNC #undef FUNCC -- cgit v1.2.3