diff options
author | Diego Biurrun | 2013-04-18 15:54:26 +0200 |
---|---|---|
committer | Diego Biurrun | 2013-05-05 18:33:04 +0200 |
commit | 7abd35a1ffaecfd79fa07b801621ee11ab595c43 (patch) | |
tree | 286dffd71af640c0517c6151ea5c063d19801122 /libavformat/g723_1.c | |
parent | 2cca96e670e78bb19eb0232469d5a27245e18c02 (diff) |
avformat: Add av_cold attributes to init functions missing them
Diffstat (limited to 'libavformat/g723_1.c')
-rw-r--r-- | libavformat/g723_1.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |