diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-06 10:27:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-06 10:28:27 +0200 |
commit | b50ab3a4c7a1225862dcf0f0bd00ffef6acfdcbb (patch) | |
tree | 38f6b0ca525e426f0ed87f8be0177462487e6c76 /libavcodec/svq3.c | |
parent | 5c2ccf83df3bfea03c843910c41ee99bd4d64129 (diff) | |
parent | bd8ac882140a38868c33c000a430a1292a352533 (diff) | |
download | ffmpeg-b50ab3a4c7a1225862dcf0f0bd00ffef6acfdcbb.tar.gz |
Merge commit 'bd8ac882140a38868c33c000a430a1292a352533'
* commit 'bd8ac882140a38868c33c000a430a1292a352533':
avcodec: Add av_cold attributes to end functions missing them
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index f584f3a2c6..3da341e667 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -39,6 +39,8 @@ * correctly decodes this file: * http://samples.mplayerhq.hu/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov */ + +#include "libavutil/attributes.h" #include "internal.h" #include "avcodec.h" #include "mpegvideo.h" @@ -1310,7 +1312,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data, return buf_size; } -static int svq3_decode_end(AVCodecContext *avctx) +static av_cold int svq3_decode_end(AVCodecContext *avctx) { SVQ3Context *s = avctx->priv_data; H264Context *h = &s->h; |