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/ralf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/ralf.c') diff --git a/libavcodec/ralf.c b/libavcodec/ralf.c index e02289ccf3..e78a9d442d 100644 --- a/libavcodec/ralf.c +++ b/libavcodec/ralf.c @@ -26,6 +26,7 @@ * Dedicated to the mastermind behind it, Ralph Wiggum. */ +#include "libavutil/attributes.h" #include "libavutil/channel_layout.h" #include "avcodec.h" #include "get_bits.h" @@ -72,7 +73,7 @@ typedef struct RALFContext { #define MAX_ELEMS 644 // no RALF table uses more than that -static int init_ralf_vlc(VLC *vlc, const uint8_t *data, int elems) +static av_cold int init_ralf_vlc(VLC *vlc, const uint8_t *data, int elems) { uint8_t lens[MAX_ELEMS]; uint16_t codes[MAX_ELEMS]; -- cgit v1.2.3