From 8022a8ebc25966bf6708c33a886eeac115c28bdb Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Mon, 8 Sep 2008 18:14:37 +0000 Subject: [PATCH] Add av_cold attribute to decode_init() Originally committed as revision 15267 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index f86e0bf4ae..ed60a157ef 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -51,7 +51,7 @@ typedef struct { uint16_t adapt_cb[146+2]; } RA144Context; -static int ra144_decode_init(AVCodecContext * avctx) +static av_cold int ra144_decode_init(AVCodecContext * avctx) { RA144Context *ractx = avctx->priv_data;