From 7abd35a1ffaecfd79fa07b801621ee11ab595c43 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 18 Apr 2013 15:54:26 +0200 Subject: avformat: Add av_cold attributes to init functions missing them --- libavformat/g723_1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/g723_1.c') diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c index 0b92702936..b67c07c404 100644 --- a/libavformat/g723_1.c +++ b/libavformat/g723_1.c @@ -24,13 +24,14 @@ * G.723.1 demuxer */ +#include "libavutil/attributes.h" #include "libavutil/channel_layout.h" #include "avformat.h" #include "internal.h" static const uint8_t frame_size[4] = { 24, 20, 4, 1 }; -static int g723_1_init(AVFormatContext *s) +static av_cold int g723_1_init(AVFormatContext *s) { AVStream *st; -- cgit v1.2.3